Community
Participate
Working Groups
My program has some issues on multiple thread, so a test case intermittently failed in daily automation testing. So I create a test suite and then add the same case in that suite many times to reproduce the failure. Below is the code snippet to create the test suite, @RunWith(Suite.class) @SuiteClasses({ BasicSetupLogTests.class, BasicSetupLogTests.class, ... BasicSetupLogTests.class, BasicSetupLogTests.class}) public class SetuplogTestSuite { // } After running the test suite, junit view can correctly report the test result for each case even if they are same.
Created attachment 170130 [details] screen shot of junit view If some running of the case are failure, the junit view just reports the final result as failure. It can't tell me which one is failed and how many cases are failed. It can't report the stack of failure.
Looks like a duplicate of bug 172256.
*** This bug has been marked as a duplicate of bug 172256 ***