在maven中运行单个soapUi项目的多个测试套件

时间:2017-11-13 11:42:55

标签: maven soapui pom.xml test-suite

我想在我的项目中运行多个测试套件,只需执行一次maven。多次运行不成功。

如果我添加两个具有相同测试目标的执行,则每个测试套件都是单独运行的。

$this->getRouterIdParameter()

但是我希望运行一次执行或以比上面更好的方式运行,因为我有很多不同的测试套件可以运行,如果我所有的测试套件如上所述,那只会让我的文件看起来很长

我希望我的pom.xml看起来像这样:

<executions>
                <execution>
                    <goals>
                        <goal>test</goal>
                    </goals>
                    <configuration>
                        <projectFile>soapui-project.xml</projectFile>
                        <testSuite>SOAPTests1</testSuite>
                    </configuration>
                </execution>
                <execution>
                    <goals>
                        <goal>test</goal>
                    </goals>
                    <configuration>
                        <projectFile>soapui-project.xml</projectFile>
                        <testSuite>SOAPTests2</testSuite>
                    </configuration>
                </execution>
            </executions>           

1 个答案:

答案 0 :(得分:0)