队
我知道这是一个很受欢迎的问题,但我一直在研究这两天没有运气。当我通过testng.xml
执行我的测试套件时,我收到以下错误:
TestNGException:在类路径中找不到类: (packageName.className)
我正在使用Eclipse IDE for Java Developers
版本: Mars.1发布(4.5.1)
构建ID: 20150924-1200
和Maven一样。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ASWRegression</groupId>
<artifactId>ASWRegression</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>ASWRegression</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.48.2</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
我已经通过eclipse清理了项目,更新了maven ran maven清理和构建但是没有取得任何成功。我甚至确保我的系统库正在提取正确的java jdk 1.8。请告知我是否还需要做其他事情?
答案 0 :(得分:2)
您需要在类路径中包含.class的packageName.className(如错误所示)。因此,当您通过命令行运行.xml文件时,它应该看起来像
java -cp %CLASSPATH%;path/to/packageName.className.class org.testng.TestNG path/to/testng.xml
。
根据类路径中已有或未有的内容,您还需要包含库的路径。因为这可能是一个杂事,我强烈建议将其保存为shell脚本或批处理文件,具体取决于您的操作系统。