Eclipse JUnit测试提示No tests found with test runner Junit5

在Eclipse中使用JUnit进行测试,Run as JUnit Test出现报错信息No tests found with test runner Junit5。

首先,保证测试方法返回类型是void。
Eclipse JUnit测试提示No tests found with test runner Junit5_第1张图片
其次,再查看引入的JUnit库的版本与测试使用的JUnit版本是否一致。
Eclipse JUnit测试提示No tests found with test runner Junit5_第2张图片
Eclipse JUnit测试提示No tests found with test runner Junit5_第3张图片
最后,再分享一个我遇到的问题,我在使用JUnit进行测试时,出现了No tests found with test runner Junit5的提示信息,并且控制台输出NoClassDefFoundError的错误信息。

后来找到原因,可能是因为我添加的JUnit库放在了错误的路径,我之前放在了Modulepath下,删除后,将JUnit添加到Classpath下,解决了无法测试的问题。
Eclipse JUnit测试提示No tests found with test runner Junit5_第4张图片

你可能感兴趣的:(java,junit)