Forum Discussion

Intuit_Inc__Sup's avatar
Intuit_Inc__Sup
New Contributor
13 years ago

Running a specific test suite using maven-soapui-pro-plugin

Hi,

I'm using maven-soapui-pro-plugin V3.6.1 to run soapui tests using maven. I'm able to run a composite project with this plugin by giving the project path:


<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>3.6.1</version>
<executions>
<execution>
<id>run-tests</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<printReport>false</printReport>
<projectFile>/Applications/eviware/soapUI-Pro-4.0.0.app/Contents/Resources/app/bin/simplecompositeproject-soapui-project</projectFile>

<outputFolder>${basedir}/target/soapui</outputFolder>
...
...
...
</configuration>
</plugin>

This way all the test suites(there are 6 test suites in that project) in that project are getting executed but I want to specify only one test suite to be executed. How can this be acheived? Which testrunner does the pro plugin use or how can it be configured to pick only one test suite?

Thanks,
Sahitya