gpt4 book ai didi

unit-testing - 我们可以在一个项目中同时运行 Spock 测试用例和 Junit 5 测试用例吗?

转载 作者:行者123 更新时间:2023-12-03 02:52:53 26 4
gpt4 key购买 nike

我们无法运行用 编写的测试用例Junit 5 Spock 框架 合二为一 gardle 项目 ?

我们尝试添加 https://www.baeldung.com/junit-5-gradle 中给出的依赖项到我们的 gradle 文件。 Gradle 版本是 4.10.3 和 Junit 5。下面是我的 build.gradle 文件

apply plugin: 'groovy'
apply plugin: 'java'

repositories {
mavenCentral()
maven {
url "http://repo.fusesource.com/nexus/content/groups/public/"
}
maven {
url "https://repository.jboss.org/nexus/content/groups/public"
}
jcenter()
}

dependencies {

compile group: 'com.google.inject', name: 'guice', version: '4.2.2'
compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1'

testCompile(
'org.codehaus.groovy:groovy-all:2.4.8',
'org.spockframework:spock-core:1.0-groovy-2.4',
'org.jmockit:jmockit:1.8',
'junit:junit:4.12'
)
testRuntime(
'cglib:cglib:2.2.2',
'com.athaydes:spock-reports:1.2.7'
)

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'

testCompileOnly 'junit:junit:4.12'

}

test {
useJUnitPlatform()
testLogging { showStandardStreams = true }
}

我创建了两个测试用例,一个使用 spock 框架,另一个使用 junit 5。但是当我执行 gradlew -test 时,它只运行用 Junit 5 编写的测试用例。下面是构建路径。

enter image description here

最佳答案

您需要 Vintage 测试引擎来执行 Spock 测试,因为它们基于 JUnit 4,并且您需要 Jupiter 测试引擎来执行 JUnit Jupiter 测试。

所以你需要依赖两个引擎。

testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'

我还建议您升级到 JUnit 5.5.1(即最新最好的)。

关于unit-testing - 我们可以在一个项目中同时运行 Spock 测试用例和 Junit 5 测试用例吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57585371/

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