testrunner
?
TestRunner Provides
- Test Driven Development inside Visual Studio 2005
- Integrated debugging from a simple context menu in the editor
- File, method, and line level code coverage in the editor
- Graphical test feedback directly in the Visual Studio editor
- Console & Trace redirection to the Output Window
- Non-blocking test runs -- program while you test on a background thread
- Test failure tool tips and line markers
- Ultra Performance tested with suites of 1400 unit tests
?
- TestRunner will change the way you NUnit test by making it a seamless experience with programming. Tests run in the background and richly interact with the Visual Studio editor instead of a separate program, saving you from the window shuffle or losing your place in your code. Unit testing, code coverage, and now performance profiling all in one convenient tool.
cppunit:?? http://morningspace.51.net/resource/cppunit/textui.html
?
------------------------------------------------------------------------------------------------------------------------------------
TestDriven.NET網址:
http://www.testdriven.net/下載地址:
http://www.testdriven.net/Default.aspx?tabid=27博客園下載地址:
http://downloads.cnblogs.com/TestDriven.NET-1.0.915d.zip使用幫助:
http://www.testdriven.net/Default.aspx?tabid=29使用感受:
1、與VS.NET集成得很不錯, 使用起來很方便, 比如我們運行一個測試方法,直接在這個方法上點擊右鍵Run Test(s):

然后在VS.NET的輸出窗口中輸出測試結果。Cool! 錯誤信息會顯示在任務窗口。
2、在“解決方案資源管理器”中,可以選中相應的項目點擊右鍵運行測試,可以通過Test With NUnit GUI啟動NUnit GUI運行測試。
3、通過Tests With Debugger, 在Debug模式中運行測試,
4、不需要另外安裝NUnit。TestDriven.NET已經自帶NUnit。
------------------------------------------------------------------
nunit的使用:
http://ltp.cnblogs.com/archive/2005/12/03/289720.html