无法使用eclipse从maven运行我的testng.xml文件

时间:2015-07-21 10:50:08

标签: java xml eclipse maven

我正在尝试运行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>

0 个答案:

没有答案