无法在Gradle上运行cucumber JUnit测试

v7pvogib  于 2023-05-07  发布在  其他
关注(0)|答案(3)|浏览(202)

我正在尝试使用IntelliJ社区版和Gradle 5.5.1运行Cucumber / Selenium项目。
我的文件夹结构如下:

ProjectRoot
|
src---main---java
|
src---test---java---packagename---stepdefinitions---Steps.java
        |
        -----resources---feature---application.feature

我的TestRunner类如下:

@RunWith(Cucumber.class)
@CucumberOptions(
        plugin = {"pretty", "json:cucumber-report.json"},
        features = {"src/test/resources/feature"})
public class TestRunner {
}

当我尝试运行TestRunner时,我得到的是以下内容:

Testing started at 18:48 ...
> Task :cleanTest
> Task :compileJava UP-TO-DATE
> Task :processResources NO-SOURCE
> Task :classes UP-TO-DATE
> Task :compileTestJava
> Task :processTestResources UP-TO-DATE
> Task :testClasses
> Task :test FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':test'.
> No tests found for given includes: [org.fifthgen.scanmaltatesting.TestRunner](filter.includeTestsMatching)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 1s
5 actionable tasks: 3 executed, 2 up-to-date

这是我的build.gradle

plugins {
    id 'java'
}

group 'org.fifthgen'
version '1'

sourceCompatibility = 11
targetCompatibility = 11

repositories {
    mavenCentral()
}

wrapper.gradleVersion = '5.5.1'

def cucumberVersion = '4.7.2'
def junitVersion = '5.5.2'

dependencies {
    implementation 'org.seleniumhq.selenium:selenium-java:3.141.59'

    testImplementation "io.cucumber:cucumber-java:${cucumberVersion}"
    testImplementation "io.cucumber:cucumber-junit:${cucumberVersion}"

    testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
    testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
}

test {
    useJUnitPlatform()
    scanForTestClasses = false
}

当我使用Gradle运行test任务时,我得到

BUILD SUCCESSFUL in 0s
4 actionable tasks: 1 executed, 3 up-to-date
18:52:41: Task execution finished 'test'.

如果没有 cucumber 场景运行。

hiz5n14c

hiz5n14c1#

RunWith为了使用JUnit 5平台机制,您必须包含对junit-vintage引擎的依赖,该引擎允许在JUnit 5上运行JUnit 4测试。
或者,您可以更改为JUnit 5的Cucumber引擎。我不确定它是否已经被释放了。

6jjcrrmo

6jjcrrmo2#

从文件上看,
Cucumber基于JUnit 4。如果您使用的是JUnit 5,请记住还要包括junit-vintage-engine依赖项。有关更多信息,请参阅JUnit 5文档。
添加以下依赖项使其在IntelliJ上工作:

testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.7.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.7.2")

点击这里了解更多详情

g0czyy6m

g0czyy6m3#

对我来说,它是这样工作的:

testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.7.2")

和/或

test {
    useJUnitPlatform()
    scanForTestClasses = false
}

这里的“魔法”是scanForTestClasses = false。但当然为了工作需要以上的组合。

相关问题