TestRunner for Visual Studio 2003
Integrated Debugging
As an advance over traditional NUnit testing, TestRunner supports integrated debugging
by convenient right-click menu in each test case. You can run your test and stop
on breakpoints without ever leaving the Visual Studio .NET environment.

Point & Click Testing
Run your tests from the test tree integrated in Visual Studio, or from the right
context menu directly in the editor.

New! Test Coverage
Integrating two common testing paradigms, unit testing and code coverage for the
first time in a complete plugin. Code coverage quickly lets you visualize which
lines of code are hit and missed in your unit tests without merging in data from
an inconvenient batch tool. With integrated coverage, knowing the quality of your
tests is as easy as running them.

TestRunner Provides
- Automatic reload of test cases on build
- Solution wide testing -- all tests in all projects are loaded
- Integrated debugging from a simple context menu in the editor
- Graphical test feedback
- Console redirection to the Output Window
- Automatic reference fix-up
- Non-blocking test runs -- program while you test