gla*_*aed 12 junit intellij-idea junit4 maven junit5
我试图在IntelliJ IDEA 2017.1.5中的同一个项目中使用JUnit4和JUnit5测试.到目前为止,所有测试都基于JUnit4.我加了jupiter,platform并且vintage依赖于我的pom.xml(包括junit-platform-surefire-provider并junit-vintage-engine为保命插件).现在,我的JUnit4的示例测试和JUnit 5的测试都没有执行.
相反,我收到以下错误:
Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.commons.util.ReflectionUtils.getDefaultClassLoader()Ljava/lang/ClassLoader;
at org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry.loadTestEngines(ServiceLoaderTestEngineRegistry.java:30)
at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:53)
at com.intellij.junit5.JUnit5IdeaTestRunner.createListeners(JUnit5IdeaTestRunner.java:39)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:49)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
Process finished with exit code 1
Empty test suite.
Run Code Online (Sandbox Code Playgroud)
我试图尽可能地遵循JUnit 5用户指南中的建议,但我可能错过了一些东西.如何让两个测试都正常运行?(当然还有我现有的所有测试)
package com.glaed.util;
import org.junit.Test;
public class JUnit4Test {
@Test
public void helloJUnit4Test() {
System.out.println("Hello JUnit4!");
}
}
Run Code Online (Sandbox Code Playgroud)
package com.glaed.util;
import org.junit.jupiter.api.Test;
class JUnit5Test {
@Test
void helloJU5test() {
System.out.println("Hello JUnit5!");
}
}
Run Code Online (Sandbox Code Playgroud)
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<testSourceDirectory>src/test</testSourceDirectory>
<excludes>
<exclude>**/*WebappTest.java</exclude>
</excludes>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.0-M5</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.0.0-M5</version>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>4.12.0-M5</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- JUNIT5 & JUPITER -->
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.0.0-M5</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>4.12.0-M5</version>
<scope>test</scope>
</dependency>
<!-- JUnit 4 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Run Code Online (Sandbox Code Playgroud)
小智 12
使用以下版本junit-jupiter-api:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M4</version>
<scope>test</scope>
</dependency>
Run Code Online (Sandbox Code Playgroud)
并且还在版本上5.0.0-M4使用所有junit-jupiter依赖项.
| 归档时间: |
|
| 查看次数: |
11691 次 |
| 最近记录: |