Hi Brian,
1. You can insert your own messages by doing a simple testContextInstance.WriteLine() in your tests. However the test result is determined by the Assert statements you have in your test method. If you wish to control your test result, you can use Assert.Pass/Assert.Fail
2. Put your CUIT methods in a single ordered test. By default, the test execution will stop if any test fails. There is a flag to continue test execution if a test fails that you can set if you dont wish to see this behavior
3. Goto qtagent32.exe.config and set the eqttracelevel flag to 0 - that should remove the debug traces from your result
Hope that helps,
Anu
http://blogs.msdn.com/anutthara- Proposed As Answer byAnutthara - MSFTModeratorThursday, November 05, 2009 6:46 AM
- Marked As Answer bybrianstill Thursday, November 05, 2009 12:50 PM
-