Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable assert in gradle test

Tags:

assert

gradle

I use JAVA_OPTS with disableassertions, but when gradle test is run, 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 output

: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
like image 525
bean Avatar asked Jan 09 '23 14:01

bean


1 Answers

Gradle runs tests in separate JVM(s).To set arguments for these JVMs, use:

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

There is a shortcut to enable or disable assertions:

tasks.withType(Test) {
    enableAssertions = false
}

For further API details, see the Gradle Build Language Reference.

like image 67
Peter Niederwieser Avatar answered Mar 31 '23 12:03

Peter Niederwieser