摇篮测试单元测试

摇篮测试单元测试

本文介绍了摇篮测试单元测试-运行除一个或几个以外的所有程序-命令行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的项目中有一堆JUnit单元测试。构建系统是Gradle。操作系统:Windows / Linux。

I have bunch of JUnit unit tests in my projects. Build system is Gradle. OS: Windows/Linux.

Gradle中的测试(单元测试)免费提供,即,如果您运行 gradle clean build ,Gradle也将运行测试任务(运行单元测试)。我知道如何在命令行中运行特定测试的测试文件夹中的所有测试。例如:请参阅Gradle用户指南中的23.13.3和23.13.4部分:

Test (Unit tests) come free in Gradle i.e. if you run "gradle clean build" Gradle will also run "test" task (to run your Unit tests). I know how can I run all tests in a test folder, of a specific test at command line. Ex: See 23.13.3 and 23.13.4 sections in Gradle user guide: http://www.gradle.org/docs/current/userguide/java_plugin.html#sec:java_test

我的问题:

我要运行除一项或多项之外的所有测试。如何在Gradle的命令行中执行此操作(而不是在build.gradle或更高级别的.gradle文件的test {...}部分中使用exclude)。

I want to run all tests except one or some. How can I do this in Gradle at command line (rather than using exclude(s) within test { ... } section in build.gradle or higher level .gradle file).

推荐答案

您可以根据属性值有条件地添加排除项。

You could conditionally add an exclusion based on a property value.

test {
    if (project.hasProperty('excludeTests')) {
        exclude project.property('excludeTests')
    }
}

然后您可以从命令行执行类似的操作。

You could then do something like this from the command line.

$ gradle -PexcludeTests=org.foo.MyTest build

这篇关于摇篮测试单元测试-运行除一个或几个以外的所有程序-命令行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 07:44
查看更多