Difference between revisions of "NUnit support tools"
(New page: == Introduction == NUnit is one of the most popular tool for unit testing in .NET. And the most important thing is that it is used inside CatGlobe and now we are approaching Test-Driven-De...) |
|||
Line 2: | Line 2: | ||
NUnit is one of the most popular tool for unit testing in .NET. And the most important thing is that it is used inside CatGlobe and now we are approaching Test-Driven-Development, this means that developers/testers must involve in using NUnit more and more. | NUnit is one of the most popular tool for unit testing in .NET. And the most important thing is that it is used inside CatGlobe and now we are approaching Test-Driven-Development, this means that developers/testers must involve in using NUnit more and more. | ||
− | In this page, I will introduce some small supporting tools that can | + | In this page, I will introduce some small supporting tools that can add some value working with NUnit. |
== NCover and NCoverExplorer == | == NCover and NCoverExplorer == | ||
Line 8: | Line 8: | ||
Download the 2 tools from: | Download the 2 tools from: | ||
− | + | *NCover: http://ncover.org | |
+ | *NCoverExplorer: http://www.kiwidude.com/dotnet/DownloadPage.html | ||
+ | |||
+ | === NCover === | ||
+ | |||
+ | |||
+ | === NCoverExplorer === |
Revision as of 07:09, 10 December 2008
Introduction
NUnit is one of the most popular tool for unit testing in .NET. And the most important thing is that it is used inside CatGlobe and now we are approaching Test-Driven-Development, this means that developers/testers must involve in using NUnit more and more.
In this page, I will introduce some small supporting tools that can add some value working with NUnit.
NCover and NCoverExplorer
NUnit does not provide a mean for checking code coverage, we have to use some third-party tools. The easiest and free tool is NCover. However, NCover just supports for exporting the code coverage result into xml file. Luckily we also have another free tool for exploring the coverage result - NCoverExplorer
Download the 2 tools from:
- NCover: http://ncover.org
- NCoverExplorer: http://www.kiwidude.com/dotnet/DownloadPage.html