Open
Description
I expected one output option would be like this:
MyTestCase1: 5 assertions passed
MyTestCase2: 3 assertions passed
...
or even just
MyTestCase1: PASS
MyTestCase2: PASS
....
I figured the log should list the tests that were performed, not just "passed 182 test cases" since that doesn't tell you what tests were in place at the time.
I see the junit and xml reporters to include the test case names. Are there settings that produce a simple list like above? Or is it necessary to transform the xml, or write a reporter? Or is this not a useful output format to ask for for some reason?