我是否可以注释带有类别的注释的测试类,然后使用另一个类别注释某些测试方法以进行排除?
我尝试了以下内容,但它只是使用组来包含测试类。然后,surefire甚至没有考虑被排除的群体'测试类中的注释方法。
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>surefire-integration-tests</id>
<phase>test</phase>
<configuration>
<!-- Include these classes -->
<groups>my.test.category.IncludeTheseClasses</groups>
<!-- Exclude these test methods -->
<excludedGroups>my.test.category.IgnoreTheseMethods</excludedGroups>
</configuration>
</execution>
答案 0 :(得分:0)