gpt4 book ai didi

Gradle 不运行 TestNG 测试,即使使用 test.useTestNG()

转载 作者:行者123 更新时间:2023-12-01 11:34:59 26 4
gpt4 key购买 nike

我的 build.gradle看起来像这样:

apply plugin: 'scala'
apply plugin: 'java'

sourceCompatibility = 1.8
version = '1.0'

repositories {
mavenCentral()
}

dependencies {
compile "org.scala-lang:scala-library:2.11.4"

compile 'org.reactivestreams:reactive-streams:1.0.0.RC1'
compile 'org.reactivestreams:reactive-streams-tck:1.0.0.RC1'

testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.testng', name: 'testng', version: '5.14.10'
}

test {
useTestNG()
}

我在 Scala 中有一些实现,在 java 中有 TestNG 测试。测试类实际上不包含任何测试,但它的父类包含。 Gradle 似乎认为类里面没有测试。
Skipping task ':testClasses' as it has no actions.
:testClasses UP-TO-DATE
:testClasses (Thread[main,5,main]) completed. Took 0.001 secs.
:test (Thread[main,5,main]) started.
:test
Skipping task ':test' as it is up-to-date (took 0.048 secs).
:test UP-TO-DATE

测试类编译在 build/classes/test

最佳答案

tl;博士

将以下代码添加到 build.gradle 中:

tasks.withType(Test) {
scanForTestClasses = false
include "**/*Test.class" // whatever Ant pattern matches your test class files
}

说明:

Here是导致您遇到问题的错误。和 here可以找到解决方案。不要忘记为所有答案点赞(我是说彼得的);)

关于Gradle 不运行 TestNG 测试,即使使用 test.useTestNG(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28008918/

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