gpt4 book ai didi

gradle - 如何将 testOptions.unitTests.all 转换为 gradle Kotlin dsl

转载 作者:行者123 更新时间:2023-12-03 04:54:23 34 4
gpt4 key购买 nike

应如何在 Gradle 中将此代码从 Groovy 转换为 Kotlin DSL?

testOptions.unitTests.all {
testLogging {
exceptionFormat = "full"
events "passed", "failed", "standardError"
showCauses true
showExceptions true
}
}

最佳答案

使用这个:

import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent

testOptions.unitTests.apply {
all(KotlinClosure1<Test, Test>({
apply {
testLogging.exceptionFormat = TestExceptionFormat.FULL
testLogging.events = setOf(
TestLogEvent.PASSED,
TestLogEvent.FAILED,
TestLogEvent.STANDARD_ERROR
)
testLogging.showCauses = true
testLogging.showExceptions = true
}
}, this))
}

关于gradle - 如何将 testOptions.unitTests.all 转换为 gradle Kotlin dsl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64160300/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com