java - How to show a 'running total' of test successes and failures in maven? -
i have bunch of junit
tests i'm running maven using following plugin
:
<groupid>org.apache.maven.plugins</groupid> <artifactid>maven-surefire-plugin</artifactid> <version>2.17</version>
when run them, take 20 minutes run. test 2 minutes in fail, whole thing keep running.
i'd kill know test has failed.
my question is: how show 'running total' of test successes , failures in maven?
Comments
Post a Comment