如何在 Jenkins 中拆分 JUnit 测试

How to split JUnit Tests in a Jenkins

我正在尝试使用 Jenkins 的 Junit 类别拆分我的测试。我在线阅读了所有指南并执行了以下操作。

  1. 创建了一个界面
public interface regression {}

  1. 为测试添加了注释
    @Category(regression.class)
    @Test
    public void myTest(){} 
  1. 已将群组添加到 POM.XML
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.21.0</version>
                <configuration>
                    <properties>
                        <property>
                            <name>listener</name>
                            <value>test_listener.TestListener</value>
                        </property>
                    </properties>
                    <groups>categories.regression</groups>
                </configuration>
            </plugin>

我写了以下终端:

mvn clean test -Dtest=categories.regression

并收到此错误消息:

 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.21.0:test (default-test) on project automation: No tests were executed!  (Set -DfailIfNoTests=false to ignore this error.) -> [Help 1]

我会再次尝试 运行 命令,但使用 -Dgroups=categories.regression 而不是 -Dtest

另外,查看:

  • How to run JUnit tests by category in Maven?
  • Run a single test method with maven