11

我将我的社区版 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)

如果需要更多信息,请告诉我。

4

3 回答 3

10

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

于 2015-11-25T17:56:49.867 回答
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>

希望这可以帮助那里的人。

于 2019-02-08T03:03:21.933 回答
-2

添加

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

到我的pom,解决问题。

于 2016-05-25T19:12:39.443 回答