2

我正在尝试并行运行测试方法。testNG xml 中的 parallel 属性对我的执行没有影响。它们对所有四个可能的选项(方法、测试、类、实例)运行相同。即我的方法对所有四个选项按顺序调用。但我需要它们以并行方式运行。从这里我明白“方法”选项应该对我有用。有什么帮助吗?

TestNG xml 如下。

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
  <suite name="Test Suite" verbose="1" parallel="methods" thread-count="2">
     <test name="parallel">
        <classes>
          <class name="com.sample.A" />
        </classes>
     </test>
  </suite>

测试类如下

package com.sample;

Class A
{

@Test
public void abc() throws Exception

{
        // some code here

}

@Test
public void xyz() throws Exception

{
        //some code here

}

 }
4

2 回答 2

0
you can see the link
http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit.html


this is my pom 
           <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>${testng.xml}</suiteXmlFile>
                    </suiteXmlFiles>
                </configuration>
            </plugin>
于 2013-07-18T08:08:50.043 回答
0

同一个 TestNG 现在可以并行执行我的方法。问题是,尽管我更改了我的 xml,但 TestNG(在 Eclipse 中)运行配置保持不变。所以我已经更改为套件 XML。因此,在我的测试中反映的 XML 中所做的更改。感谢大家的时间。

于 2013-07-18T13:25:35.087 回答