作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 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.+"
}
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
最佳答案
Gradle 在单独的 JVM 中运行测试。要为这些 JVM 设置参数,请使用:
tasks.withType(Test) {
jvmArgs "...", "..."
}
tasks.withType(Test) {
enableAssertions = false
}
关于gradle - 如何在 gradle 测试中禁用断言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26399404/
我是一名优秀的程序员,十分优秀!