When I run a junit test suite class via the surefire plugin, I see only the
progress information for the test suite itself. So if the suite contains
100 test classes, I see output like this on stdout:
Running my.package.MySuite
Tests run: 1257, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 124.971
sec - in my.package.MySuite
Results :
Tests run: 1257, Failures: 0, Errors: 0, Skipped: 1
I would like to find a way to continue using the test suite class, but yet
see progress information on stdout that is similar to running the test
classes individually, like this:
Running my.package.MyTestClass1
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.50
sec - in my.package.MyTestClass1
Running my.package.MyTestClass2
Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.25
sec - in my.package.MyTestClass2
Running my.package.MyTestClass3
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.74
sec - in my.package.MyTestClass3
...
Results :
Tests run: 1257, Failures: 0, Errors: 0, Skipped: 1
How can this be done?
Thanks in advance for any help
--
Phil Adams