Forum Discussion
Hi Raviraj,
Thank you for your post. You will need to specify test suites in the following way:
<executions>
<execution>
<id>TestSuite 1</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>Project-1-soapui-project.xml</projectFile>
<testSuite>TestSuite 1</testSuite>
</configuration>
</execution>
<execution>
<id>TestSuite 2</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>Project-1-soapui-project.xml</projectFile>
<testSuite>TestSuite 2</testSuite>
</configuration>
</execution>
</executions>
Please find the entire pom. xml file attached.
for executing what mvn command i need to use
Nastya_Khovrina wrote:
Hi Raviraj,
Thank you for your post. You will need to specify test suites in the following way:
<executions>
<execution>
<id>TestSuite 1</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>Project-1-soapui-project.xml</projectFile>
<testSuite>TestSuite 1</testSuite>
</configuration>
</execution>
<execution>
<id>TestSuite 2</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>Project-1-soapui-project.xml</projectFile>
<testSuite>TestSuite 2</testSuite>
</configuration>
</execution></executions>
Please find the entire pom. xml file attached.
for multiple test suite- Nastya_Khovrina7 years ago
Alumni
Harry,
You just need to change the pom.xml file.