升级到Intellij 15后,TestNG测试不在IDE中运行

时间:2015-11-25 01:04:05

标签: intellij-idea testng intellij-15

我将社区版IntelliJ从版本14升级到15.0.1,过去在IDE中运行的TestNG测试给出了这些例外。我该如何解决这些问题?

Exception in thread "main" java.lang.NoClassDefFoundError: org/testng/CommandLineArgs
    at org.testng.RemoteTestNGStarter.main(RemoteTestNGStarter.java:118)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
Caused by: java.lang.ClassNotFoundException: org.testng.CommandLineArgs
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)

如果需要更多信息,请与我们联系。

3 个答案:

答案 0 :(得分:9)

org.testng.CommandLineArgs类是在TestNG 6.0中引入的。我遇到了同样的问题,我的项目有TestNG 5.9。升级到较新版本后,测试成功运行。

答案 1 :(得分:0)

对我有用的是将testng-remote依赖项显式添加到我的项目中。在我的pom.xml中,我有以下两个依赖项:

    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.14.3</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.testng.testng-remote</groupId>
        <artifactId>testng-remote</artifactId>
        <version>1.4.0</version>
        <scope>test</scope>
    </dependency>

请注意,testng-remote不在Maven中央存储库中。您还需要将此存储库也添加到pom.xml

<repositories>
    <repository>
        <id>testng</id>
        <url>https://dl.bintray.com/testng-team/testng/</url>
    </repository>
</repositories>

希望这可以帮助某个人。

答案 2 :(得分:-2)

添加

<dependency>
    <groupId>com.github.adedayo.intellij.sdk</groupId>
    <artifactId>testng_rt</artifactId>
    <version>142.1</version>
</dependency>

到我的pom,解决问题。