Automation of integration tests
October 28, 2008
In my current project we have reached a very good code coverage percent (98,7 %, yes we are proud) - but we are aspiring to take it a step further.
We are now constructing a series of integration test, used to run through the actual production code an verifying that everything works as expected.
Said and done - I implemented a few test that did that. Soon though some questions and problems arose;
- Integration test assumes that something is released and the that tests are executed against that release
- You don’t want the integration test to be executed when a developer is running the unit test on his development machine inside Visual Studio.
When looking around on the net it seems that many people are missing the Category-attribute from NUnit in MSTest. That looked like a very nice way to solve the problem but...