我正在尝试运行mang的testng.xml文件,但它失败了。但是,如果我直接运行测试文件,我的测试用例运行正常。
我提供了testng.xml的代码片段以及我的pom.xml。
的testng.xml
<suite name="Tina5s" verbose="1" >
<test name="New Object" >
<classes>
<class name="Login.NewObj" />
</classes>
</test>
</suite>
的pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugin</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>TestData/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>