groovy 版本更新后在构建版本中未找到Gradle测试

xtfmy6hx  于 2022-11-01  发布在  其他
关注(0)|答案(1)|浏览(151)

我有一个问题与gradle建设。
下面是我的build.gradle文件:

import groovy.xml.XmlSlurper
import groovy.xml.MarkupBuilder

def property(String key) { return project.findProperty(key).toString() }

static def definedInPluginXml(String key) {
    File pluginXmlFile = new File('src/main/resources/META-INF/plugin.xml')
    def idea = new XmlSlurper().parse(pluginXmlFile)
    return idea."$key"
}

plugins {
    id 'org.jetbrains.intellij' version '1.5.3'
    id 'groovy'
    id 'java'
    id 'org.jetbrains.changelog' version '1.2.1'
}

apply plugin: 'org.jetbrains.changelog'

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.codehaus.groovy:groovy-all:3.0.9'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
    version = '2022.1'
    plugins = ['java', 'com.intellij.java', 'org.intellij.groovy']
}

/**
 * Refreshes the plugin.xml file for deployment
 */
String ideaMinVersion = property("ideaMinVersion")
String ideaMaxVersion = property("ideaMaxVersion")
String pluginVersion = property("version")
patchPluginXml {
    changeNotes = changelog.get(pluginVersion).toHTML()
    version = pluginVersion
    sinceBuild = ideaMinVersion
    untilBuild = ideaMaxVersion
}

test {
    useJUnit()
    filter{
        includeTestsMatching "fr.nereide.*"
    }
}

tasks {
    runIde {
        jvmArgs("-Xmx2048m")
    }
}

/**
 * Config for changelog Plugin
 */
changelog {
    itemPrefix = "-"
    keepUnreleasedSection = false
    unreleasedTerm = "[Unreleased]"
    groups = ["Added", "Changed", "Deprecated", "Removed", "Fixed", "Security"]
}

/**
 * Generates the updatePlugin.xml files used for the repo.
 */
task generateUpdatePluginXml {
    //...
}

/**
 * Adds tests on build
 */
buildPlugin {
    dependsOn 'test'
    dependsOn 'generateUpdatePluginXml'
    tasks.findByName('generateUpdatePluginXml').mustRunAfter 'patchPluginXml'
}

以下是版本信息:

./gradlew --version                                                                                                                                                
Welcome to Gradle 7.1!

Here are the highlights of this release:
 - Faster incremental Java compilation
 - Easier source set configuration in the Kotlin DSL

For more details see https://docs.gradle.org/7.1/release-notes.html

------------------------------------------------------------
Gradle 7.1
------------------------------------------------------------

Build time:   2021-06-14 14:47:26 UTC
Revision:     989ccc9952b140ee6ab88870e8a12f1b2998369e

Kotlin:       1.4.31
Groovy:       3.0.7
Ant:          Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM:          11.0.15 (Oracle Corporation 11.0.15+3)
OS:           Linux 5.15.32-1-MANJARO amd64

我更新了以下依赖项:

  • 由1.1.4版升级到1.5.3版
  • 代码屋。从2.5.14升级到3.0.9

还更新了intellij { version = '2022.1' } // from 2021.2
在更新之前,测试结果很好。现在,在更新之后,我得到了以下错误:
任务:test失败任务':test'执行失败。找不到给定包含的测试:沙蚕果 *
我是一个新手,对我来说很不清楚它是如何工作的,我发现医生很肤浅。
所以我的问题是:

  • 是否有一种简单的方法来启动所有测试(没有任何限制)
  • 我必须添加@Test装饰器吗?在更新之前它是不必要的,并且在当前版本中也没有太大的变化。
  • 我在哪里可以找到文档和信息,我可以用来找到我更新的软件包上的迁移信息
  • 有没有像Gradle for Dummies这样的资源,有人可以推荐?

提前感谢!

y0u0uwnf

y0u0uwnf1#

发现了这个问题,已经有一段时间了。我用useJUnitPlatform()替换了useJUnit()

dependencies {
    implementation 'org.codehaus.groovy:groovy-all:3.0.9'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}

dependencies {
    implementation 'org.codehaus.groovy:groovy-all:3.0.9'
    testImplementation platform('org.junit:junit-bom:5.8.2')
    testImplementation 'org.junit.jupiter:junit-jupiter'
    testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}

相关问题