我可以在maven-surefire-plugin中使用groups和excludedGroups吗?

时间:2014-07-15 01:10:49

标签: maven junit categories surefire

我是否可以注释带有类别的注释的测试类,然后使用另一个类别注释某些测试方法以进行排除?

我尝试了以下内容,但它只是使用组来包含测试类。然后,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>

1 个答案:

答案 0 :(得分:0)

包含标签,而不是类。