How to disable assert in gradle test

I use JAVA_OPTS with disableassertions, but when gradle testrunning, there are still outputs with java.lang.AssertionError. Why?

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.+"
}

gradle test conclusion

: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
+4
source share
1 answer

Gradle runs tests in separate JVMs. To set the arguments for these JVMs use:

tasks.withType(Test) {
    jvmArgs "...", "..."
}

There is a shortcut to enable or disable claims:

tasks.withType(Test) {
    enableAssertions = false
}

For more information about the API, see the Gradle Assembly Language Reference .

+7
source

All Articles