Is there any way to configure the mvn
command to display which tests (test methods within a test class) were run in the test summary (in the Results:
section) without using the overly verbose -X option?
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.myproject.MyTestClass
Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec <<< FAILURE!
Results :
#I would like to show the passed test here
Failed tests:
testTwo(com.myproject.MyTestClass)
Tests run: 2, Failures: 1, Errors: 0, Skipped: 0