gpt4 book ai didi

java - 想要使用 TestNg 包运行 Maven 项目,但在执行项目时出现错误

转载 作者:行者123 更新时间:2023-12-01 17:13:19 24 4
gpt4 key购买 nike

我已经开始为 selenium java 配置一个 Maven 项目,并从 pom.xml 中排除了以下 junit 依赖项,因为我想使用 TestNG 来实现它。因此包含了 testng 依赖项而不是它。

junit 依赖

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

pom.xml

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>MobilePackage</groupId>
<artifactId>MobileProject</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>MobileProject</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.0.0-alpha-5</version>
</dependency>


</dependencies>
</project>
<小时/>

编译项目(mvn编译)并且BUILD成功,但在执行项目($ mvn test)时出现问题。终端显示以下错误。

[ERROR] /home/PC1/Documents/OfficeProject/MobileProject/src/test/java/MobilePackage/AppTest.java:[3,23] package junit.framework does not exist
[ERROR] /home/PC1/Documents/OfficeProject/MobileProject/src/test/java/MobilePackage/AppTest.java:[4,23] package junit.framework does not exist
.
.
.
[ERROR] /home/PC1/Documents/OfficeProject/MobileProject/src/test/java/MobilePackage/AppTest.java:[11,13] cannot find symbol
[ERROR] symbol: class TestCase
[ERROR] /home/PC1/Documents/OfficeProject/MobileProject/src/test/java/MobilePackage/AppTest.java:[26,19] cannot find symbol
[ERROR] symbol: class Test
[ERROR] location: class MobilePackage.AppTest
<小时/>

所以我发现问题存在于AppTest.java文件中。以下仍然存在。

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

AppTest.java代码如下

package MobilePackage;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
* Unit test for simple App.
*/
public class AppTest
extends TestCase
{
/**
* Create the test case
*
* @param testName name of the test case
*/
public AppTest( String testName )
{
super( testName );
}

/**
* @return the suite of tests being tested
*/
public static Test suite()
{
return new TestSuite( AppTest.class );
}

/**
* Rigourous Test :-)
*/
public void testApp()
{
assertTrue( true );
}
}
<小时/>

如何摆脱这个问题。我需要为 TestNG 配置 apptest.java (我尝试这样做,但是错误没有消失)。我应该同时包含 testNG 和 junit 吗?如果是的话,以后会不会有什么问题呢?请提出建议。

最佳答案

  1. 当您删除 jUnit 依赖项后,相应的导入将不起作用
  2. 创建maven archtype项目并删除默认的App文件夹结构
  3. 尝试在maven Sure fire插件中添加此配置,以便testng.xml可以使用mvn test命令运行。

    org.apache.maven.plugins maven-surefire-插件 3.0.0-M4 测试文件

关于java - 想要使用 TestNg 包运行 Maven 项目,但在执行项目时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61410088/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com