I am using Cruisecontrol for building code and executing ~200 test cases.
Sometimes the build gets hung due to some of the test cases and I am not able to determine which test case it is.
Is it possible to print the name of the currently executing test case without modifying the current test case code?
If yes, how?
TestContext.CurrentContext.Test.Name will help in identifying the currently executing test case. Putting
in method with SetUp attribute will print the UT currently executing.