I have suite which contains couple of tests. I want to print for each test if it pass or fail when the test finish to run. I don't want to add code for each test cause I have a lot of tests, I need to do it in the suite. This is an example of one suite that I have:
@RunWith(ConcurrentSuite.class)
@Concurrent(threads = 6)
@Suite.SuiteClasses({
test1.class,
test2.class,
test3.class,
test4.class,
})
public class ExampleSuite {
}
tnx!