从IntelliJ运行测试用例时-面对此问题。 mvn全新安装可以正常工作。
有人遇到过这个问题吗?
答案 0 :(得分:2)
尝试在您的maven项目中使用JUnit 4依赖项。 https://mvnrepository.com/artifact/junit/junit/4.12
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>