作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过以下信息将更多日志打印到控制台:
https://stackoverflow.com/a/36130467,但我不断收到这些错误:
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'java'
repositories {
jcenter()
mavenCentral()
}
tasks.withType(Test) {
testLogging {
// set options for log level LIFECYCLE
events TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
TestLogEvent.STANDARD_OUT
exceptionFormat TestExceptionFormat.FULL
showExceptions true
showCauses true
showStackTraces true
// set options for log level DEBUG and INFO
debug {
events TestLogEvent.STARTED,
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
TestLogEvent.STANDARD_ERROR,
TestLogEvent.STANDARD_OUT
exceptionFormat TestExceptionFormat.FULL
}
info.events = debug.events
info.exceptionFormat = debug.exceptionFormat
afterSuite { desc, result ->
if (!desc.parent) { // will match the outermost suite
def output = "Results: ${result.resultType} (${result.testCount} tests, ${result.successfulTestCount} successes, ${result.failedTestCount} failures, ${result.skippedTestCount} skipped)"
def startItem = '| ', endItem = ' |'
def repeatLength = startItem.length() + output.length() + endItem.length()
println('\n' + ('-' * repeatLength) + '\n' + startItem + output + endItem + '\n' + ('-' * repeatLength))
}
}
}
}
dependencies {
testImplementation group: 'org.codehaus.groovy', name: 'groovy-all', version:'2.4.10'
testImplementation group: 'org.spockframework', name: 'spock-unitils', version:'1.1-groovy-2.4-rc-4'
}
最佳答案
使用JUnit 5
和Gradle 6
,以下test
任务定义将打印测试的名称和结果:
test {
useJUnitPlatform()
testLogging.events.addAll([TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED])
}
test
任务。所有测试完成后,这将添加以下报告。
----------------------------------------------------------------------
| Results: SUCCESS (95 tests, 95 successes, 0 failures, 0 skipped) |
----------------------------------------------------------------------
test {
useJUnitPlatform()
testLogging.events.addAll([TestLogEvent.PASSED, TestLogEvent.SKIPPED, TestLogEvent.FAILED])
testLogging {
afterSuite { desc, result ->
if (!desc.parent) { // group the results in one
def output = "Results: ${result.resultType} (" +
"${result.testCount} tests, " +
"${result.successfulTestCount} successes, " +
"${result.failedTestCount} failures, " +
"${result.skippedTestCount} skipped)"
def startItem = '| ', endItem = ' |'
def repeatLength = startItem.length() + output.length() + endItem.length()
println('\n' + ('-' * repeatLength) + '\n' + startItem + output + endItem + '\n' + ('-' * repeatLength))
}
}
}
}
关于gradle - 无法解析符号testLogging,事件,exceptionFormat- Gradle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49334677/
我正在尝试通过以下信息将更多日志打印到控制台: https://stackoverflow.com/a/36130467,但我不断收到这些错误: 无法解析符号测试 无法解决符号事件 无法解决符号异常格
我是一名优秀的程序员,十分优秀!