我无法使用 Maven 运行我的 testng 脚本。每次当我尝试运行 mvn test -Dtest com.example.tests.ScriptTest(); 时,它都会说构建成功
pom.xml
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.6.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
测试文件
package com.example.tests;
import org.testng.annotations.Test;
public class ScriptTest{
@Test
public void testScript() {
System.out.println(“This is a test script”);
}
}
应该能够使用 testng 启动 Maven 脚本
mvn -Dtest=ScriptTest#testScript test