Is there any way to get maven surefire to print the name of every unit test (i.e., test method) it's starting?
Something like:
testFoo: ... passed
testBar: ... failed
By default, these files are generated at ${basedir}/target/surefire-reports . As such, after the tests are executed, you just need to open those reports in Eclipse by double-clicking them.
mvn test-compile: Compiles the test source code. mvn test: Runs tests for the project. mvn package: Creates JAR or WAR file for the project to convert it into a distributable format. mvn install: Deploys the packaged JAR/ WAR file to the local repository.
In details
package com.example.mavenproject;
import org.junit.runner.Description;
import org.junit.runner.Result;
import org.junit.runner.notification.RunListener;
/**
* @author Paul Verest
*/
public class PrintOutCurrentTestRunListener extends RunListener {
@Override
public void testRunStarted(Description description) throws Exception {
// TODO all methods return null
System.out.println("testRunStarted " + description.getClassName() + " " + description.getDisplayName() + " "
+ description.toString());
}
public void testStarted(Description description) throws Exception {
System.out.println("testStarted "
+ description.toString());
}
public void testFinished(Description description) throws Exception {
System.out.println("testFinished "
+ description.toString());
}
public void testRunFinished(Result result) throws Exception {
System.out.println("testRunFinished " + result.toString()
+ " time:"+result.getRunTime()
+" R"+result.getRunCount()
+" F"+result.getFailureCount()
+" I"+result.getIgnoreCount()
);
}
}
and in pom.xml
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<properties>
<property>
<name>listener</name>
<value>com.example.mavenproject.PrintOutCurrentTestRunListener</value>
</property>
</properties>
</configuration>
</plugin>
</plugins>
</build>
It's a bit of stretch, but you could implement a RunListener and add it to surefire. See how to configure it here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With