无法使用maven启动testng脚本

问题描述 投票:0回答:1

我无法使用 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 脚本

java maven testng maven-surefire-plugin
1个回答
0
投票
要从测试类运行单个测试方法,命令应如下所示:

mvn -Dtest=ScriptTest#testScript test


    

© www.soinside.com 2019 - 2024. All rights reserved.