Koltlin 1.3.61-多平台项目-无法在jvmTests中运行Java测试

时间:2020-01-19 21:21:53

标签: kotlin intellij-idea intellij-19

我使用Intellij2019.3.1创建了一个多平台项目。该项目仅包含由Idea创建的默认样本类。 我正在尝试使用IntelliIdea(2019.3.1)在kotlin 1.3.61中运行Java测试。 当我尝试运行jvm测试时,它失败了 失败:构建失败,并出现异常。

* What went wrong:
Execution failed for task ':jvmTest'.
> No tests found for given includes: [sample.TestJava](filter.includeTestsMatching)

请查看默认情况下由Idea创建的build.gradle文件

plugins {
    id 'org.jetbrains.kotlin.multiplatform' version '1.3.61'
}
repositories {
    mavenCentral()
}
group 'com.example'
version '0.0.1'

apply plugin: 'maven-publish'

kotlin {
    jvm()
    js {
        browser {
        }
        nodejs {
        }
    }
    // For ARM, should be changed to iosArm32 or iosArm64
    // For Linux, should be changed to e.g. linuxX64
    // For MacOS, should be changed to e.g. macosX64
    // For Windows, should be changed to e.g. mingwX64
    macosX64("macos")
    sourceSets {
        commonMain {
            dependencies {
                implementation kotlin('stdlib-common')
            }
        }
        commonTest {
            dependencies {
                implementation kotlin('test-common')
                implementation kotlin('test-annotations-common')
            }
        }
        jvmMain {
            dependencies {
                implementation kotlin('stdlib-jdk8')
            }
        }
        jvmTest {
            dependencies {
                implementation kotlin('test')
                implementation kotlin('test-junit')
                // implementation kotlin("org.junit.jupiter:junit-jupiter-api:5.3.2")
                //implementation kotlin("org.junit.jupiter:junit-jupiter-engine:5.3.2")

            }
        }
        jsMain {
            dependencies {
                implementation kotlin('stdlib-js')
            }
        }
        jsTest {
            dependencies {
                implementation kotlin('test-js')
            }
        }
        macosMain {
        }
        macosTest {
        }
    }
}

有人可以帮忙吗

1 个答案:

答案 0 :(得分:1)

不确定这是否是您具体问题的解决方案,但是每当IDEA给您一个类似“未找到测试”消息的错误时,都是因为我的项目(带有我想测试的源)无法编译。

奇怪的是,IDEA并没有警告我它在整个过程中都遇到了编译器错误...因此,我建议您一路检查代码是否正常编译。

正如我所说,也许这不是解决您特定问题的方法,只是有根据的猜测。要确定这一点,需要一些代码来重现该错误。