Contents tagged with Unit Testing
-
More on Unit Testing : TestContext
From empirical evidence, we know that improving code coverage by verifying all the boundary conditions, and ensuring quality of code-base significantly enhances maintainability and comprehensibility of complex software systems. Therefore, writing effective unit and integration tests has become one of the integral part in software development life cycle. In fact, development methodology such as TDD has been embraced rapidly due to these realized benefits. In today's post, we talk more about
TestContextofmstest. In particular, we focus on its usage in devising effective unit tests. Before moving forward, we would like to outline the previous posts of the series regarding Unit Testing.What is TestContext?
TestContextis an abstract class ofMicrosoft.VisualStudio.TestTools.UnitTestingnamespace. It exposed several properties related to the current context (i.e., current test run). In addition, it provides following supports: (read more) -
TDD - In a Nutshell
-
Why is Unit Testing so important?
Moved to http://adilakhter.wordpress.com/2008/04/18/why-is-unit-testing-so-important/