我在Eclipse中有一个项目,包括Maven,Cucumber,SoapUI和JUnit。我已经能够成功地构建它而没有错误(是的!我是Maven,SoapUI和Cucumber的新手)。 该项目有一个包含两个场景的Cucumber特征文件。我在pom.xml文件中有SoapUI的以下配置
.
.
<pluginRepositories>
<pluginRepository>
<id>smartbear-sweden-plugin-repository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-pro-maven-plugin</artifactId>
<version>4.6.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>soapui-project.xml</projectFile>
<outputFolder>soapuiOut</outputFolder>
<junitReport>true</junitReport>
<exportwAl>true</exportwAl>
<printReport>false</printReport>
</configuration>
</execution>
</executions>
</plugin>
.
.
目前,当我使用maven构建它时,它会运行整个SoapUI项目,其中包含所有测试用例。我想将SoapUI中的两个测试用例链接到功能文件中的两个场景。是否可以在场景的测试步骤定义中从SoapUI测试套件运行单个测试用例?仅当与之相关的SoapUI测试用例通过时,该方案才会通过。
答案 0 :(得分:0)
问:是否可以在方案的测试步骤定义中从SoapUI测试套件运行单个测试用例?
答:当然,根据此处的文档,在您的配置中使用testCase
:http://www.soapui.org/Test-Automation/maven-2x.html#5-1-test-settings
一个小评论:你提到你是Maven的新手。如果您希望让项目更多 Maven-ized ,请将您的soapui-project.xml放在src / test / soapui中,并相应地调整您的pom.xml。