Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Database Driven Unit Testing Using VSTS

4.83/5 (4 votes)
13 Jan 2010CDDL1 min read 13.6K  
Database driven unit testing using VSTS

The primary concern about Database driven Unit testing is to maintain the test database intact. To elaborate, suppose we have an add method that adds customer information in the database and we have a get method that actually returns a list of customer from database.

So we will have a different Unit test method for AddCustomer() and GetCustomer().

Now in order to pass the GetCustomer() method as a test case, we have decided that it will return exactly 3 records and we have setup our test database in such a way to meet our test criterion.

The problem will be raised if we test the AddCustomer() method before GetCustomer() method as AddCustomer() method will add one customer and our GetCustomer() method will return 4 records that will fail its test case.

In order to overcome such a situation, we can use the power of TransactionScope Object.

In order to use this, you must include System.Transactions in the Unit Test Project references and add System.Transactions in the reference section.

In the class generated by VSTS Unit Test wizard, you can see one region commented like below:

C#
#region Additional test attributes 

//You can use the following additional attributes as you write your tests: 
 
//Use ClassInitialize to run code before running the first test in the class 
//[ClassInitialize()] 
//public static void MyClassInitialize(TestContext testContext) 
//{ 
//} 
 
//Use ClassCleanup to run code after all tests in a class have run 
//[ClassCleanup()] 
//public static void MyClassCleanup() 
//{ 
//} 
 
//Use TestInitialize to run code before running each test 
//[TestInitialize()] 
//public void MyTestInitialize() 
//{ 
//} 
 
//Use TestCleanup to run code after each test has run 
//[TestCleanup()] 
//public void MyTestCleanup() 
//{ 
//} 

#endregion

From here, just uncomment MyTestInitialize() and MyTestCleanup() method.

Now, declare one global variable of TransactionScope Object write the body of the methods like below:

C#
TransactionScope ts; 

///Use TestInitialize to run code before 
///running each test 

[TestInitialize()] 
public void MyTestInitialize() 
{ 
ts = new TransactionScope(); 
} 

///Use TestCleanup to run code after 
///each test has run 
[TestCleanup()] 
public void MyTestCleanup() 
{ 
ts.Dispose();
}

After this, before executing any Unit Test method, MyTestInitialize() method will be called where a new instance of TransactionScope will be created and after executing the Unit test method, the object will be disposed which will ultimately rollback all the changes committed by the Unit test method keeping our test database intact.

Happy testing!

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)