繁体   English   中英

如何在 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

另外,请查看:

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM