如何在gradle测试中禁用断言

bea*_*ean 4 assert gradle

我使用带有disableassertions的JAVA_OPTS,但是当gradle test运行时,仍然有输出java.lang.AssertionError.为什么?

build.gradle:

apply plugin: 'java'

apply plugin: 'eclipse'

apply plugin: "groovy"

dependencies {

    compile 'org.codehaus.groovy:groovy-all:2.3.6'  // for compile groovy
    compile "org.springframework:spring-core:3.0.5.RELEASE"
    compile "org.springframework:spring-aop:3.0.5.RELEASE"
    compile "org.springframework:spring-asm:3.0.5.RELEASE"
    compile "org.springframework:spring-beans:3.0.5.RELEASE"
    compile "org.springframework:spring-context:3.0.5.RELEASE"
    compile "org.springframework:spring-expression:3.0.5.RELEASE"
    compile "org.springframework:spring-jdbc:3.0.5.RELEASE"
    compile "org.springframework:spring-orm:3.0.5.RELEASE"
    compile "org.springframework:spring-test:3.0.5.RELEASE"
    compile "junit:junit:4.+"
}
Run Code Online (Sandbox Code Playgroud)

gradle test 产量

:booking:processResources UP-TO-DATE 

:booking:classes

:booking:jar

:compileJava

:compileGroovy

:processResources UP-TO-DATE

:classes

:compileTestJava UP-TO-DATE

:compileTestGroovy

:processTestResources UP-TO-DATE

:testClasses

:test

ScriptTester > testHandle FAILED
    java.lang.AssertionError at ScriptTester.groovy:127
Run Code Online (Sandbox Code Playgroud)

Pet*_*ser 7

Gradle在单独的JVM中运行测试.要为这些JVM设置参数,请使用:

tasks.withType(Test) {
    jvmArgs "...", "..."
}
Run Code Online (Sandbox Code Playgroud)

有一个启用或禁用断言的快捷方式:

tasks.withType(Test) {
    enableAssertions = false
}
Run Code Online (Sandbox Code Playgroud)

有关更多API详细信息,请参阅Gradle构建语言参考.