我正在使用带有 surefire 插件的 TestNg 和 Maven 来运行我的测试。我有几个不同的测试,我想在同一个 pom 中运行。目前要做到这一点,我定义了两个不同的 XML 文件,并且我定义了两个配置文件来运行不同的 xml 文件,但这一直抛出错误!
我不知道我应该如何解决这个问题。任何帮助将不胜感激!
<profile>
<id>run</id>
<activation>
<property>
<name>start</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
<suiteXmlFiles>
<suiteXmlFile>${project.build.directory}/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
<executions>
<execution>
<id>test</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
想象配置文件 2 几乎相同,但 xml 套件文件不同
我收到一个解析错误:在 suiteXmlFile 中找不到测试类。但是,如果我只使用一个配置文件只有一个 xml 文件,这是可以接受的。失败的那个也有效。