(BTW: Yes, I am including the Maven surefire plugin in my pom.)
I can't persuade Maven to run my JUnit5 tests.
- I am using the Maven surefire plugin version 2.22
- I tried downgrading the surefire plugin to 2.19
- I'm using the same dependencies and plugins as another project which runs fine
- If I import the project into eclipse, eclipse finds and executes the tests
- The class file for the test, app.AppTest.class, is in directory target\test-classes\app
- I don't get any error messages from Maven; it just says "Tests run: 0, Failures: 0, Errors: 0, Skipped: 0"
I am including the contents of my pom, below. Can anyone tell me what I'm doing wrong? Thanks for the help.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>uw.syp.java</groupId>
<artifactId>Temp1</artifactId>
<packaging>jar</packaging>
<version>01</version>
<name>Temp1</name>
<url>http://maven.apache.org</url>
<properties>
<developer>JesseJW</developer>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-serial</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
</project>
As requested: source code including imports: package app;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import java.net.URL;
import javax.swing.JOptionPane;
class AppTest
{
void test()
{
System.out.println( "*************" );
URL resURL = getClass().getClassLoader().getResource( "ResFile.txt" );
System.out.println( resURL );
assertNotNull( resURL );
if ( resURL != null )
{
System.out.println( resURL.getPath() );
}
}
}