Unit testing with NUnit and Visual Studio 2005 (MSUnit)
On my current project we are developing a windows forms application in Visual Studio 2005. We are still using CruiseControl.NET for continuous integration and unit testing, because setting up a team...
View ArticleContinuous Integration with traffic lights
Continuous integration is the process that continuously build, analyze and test your sources. In many cases the process is triggered when changes are notified in the version control system, like VSS,...
View ArticleRunning MSTest without Visual Studio – Gallio to the rescue
In some cases it can be useful to quickly run your Microsoft unit tests on a machine where Visual Studio is not installed. For example on an end-user machine and/or during acceptance testing. Microsoft...
View ArticleCode coverage with Visual Studio
Code coverage is used to determine how effectively your tests exercise the code in your application. This way you can identify sections of code that are covered, not covered or partially covered by...
View Article