我刚刚开始学习Junit,并创建了一个非常琐碎的测试课程,但遇到两个问题 我)不能直接作为JUnit测试运行。(我必须为我尝试在Eclipse IDK中运行的每个Java文件运行配置,这是为什么) ii)对于相同的问题,我遵循了几个答案,但没有帮助-使用测试运行器JUnit 5找不到测试
我尝试了以下解决方案 添加依赖项 重新启动, 相似帖子中提供的其他解决方案
package io.javatest;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
class MathUtilsTest {
@Test
void test() {
System.out.println("This test ran");
}
}
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.javatest</groupId>
<artifactId>junit-5-basics</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>junit-5</name>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<junit.jupiter.version>5.4.0</junit.jupiter.version>
<junit-platform.version>1.2.0</junit-platform.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>`enter code here`
</dependencies>
</project>
答案 0 :(得分:0)
这是一个使用maven并带有示例测试的示例junit 5项目。该测试在命令行中使用“ mvn测试”运行。
答案 1 :(得分:0)
在您的 IDE 中,右键单击 junit 测试用例并选择“运行方式”并单击“运行配置”,选择配置并向下滚动并将“测试运行器”更改为 junit 4。现在应用并关闭并运行.这为我解决了问题。但想知道根本原因。