Java:JUnit常见错误解决
本文记录了在用 JUnit 进行方法测试过程中出现的问题,提供了详细的解决办法。
·
Java:JUnit常见错误解决
- 前言
- 一、org.junit.runners.model.InvalidTestClassError: Invalid test class 'com.software.ApplicationTests': 1 Method contextLoads() should be public
- 二、Runner org.junit.internal.runners.ErrorReportingRunner (used on class com.software.ApplicationTests) does not support filtering and will therefore be run completely.
前言
本文记录了在用 JUnit 进行方法测试过程中出现的问题,提供了详细的解决办法
一、org.junit.runners.model.InvalidTestClassError: Invalid test class ‘com.software.ApplicationTests’: 1 Method contextLoads() should be public
解决办法:按照给出的提示,将 contextLoads() 方法增加 public 修饰
二、Runner org.junit.internal.runners.ErrorReportingRunner (used on class com.software.ApplicationTests) does not support filtering and will therefore be run completely.
出错原因:junit版本对应错误 你在pom里的junit和@Test的junit版本不一致 在@Test时选择maven下的版本就可以了,不要选带api的,还有SpringJUnit4ClassRunner只支持4.12版本及以上
解决办法:将引入的 org.junit.jupiter.api.Test; 这个包替换成 org.junit.Test;
更换为:
更多推荐
已为社区贡献1条内容
所有评论(0)