我遇到此异常:
[RemoteTestNG] detected TestNG version 6.8.9
Exception in thread "main" org.testng.TestNGException:
Cannot load class from file:
at org.testng.internal.ClassHelper.fileToClass(ClassHelper.java:527)
at org.testng.TestNG.configure(TestNG.java:1452)
at org.testng.remote.AbstractRemoteTestNG.configure(AbstractRemoteTestNG.java:74)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:235)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)
从 eclipse neon 4.6.1
运行我的 testsuite文件时我的 pom.xml 具有设置:
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
</dependency>
我的类路径也很好。
在Eclipse上安装的TestNG插件为6.14.0
由于该错误,我无法执行测试。尝试了所有选项。请帮助
答案 0 :(得分:0)
这个问题有点老了,您找到问题了吗?我遇到了同样的问题,对我来说,这与pom文件中期望监听器的空白有关。
问题
根本原因(对我来说)
解决方案
这解决了我的问题。