我目前正在使用Kotlin测试框架https://github.com/kotlintest/kotlintest

我想知道是否存在一种预期的结构项目方式,就像可以在其上开始的基础项目一样。

最佳答案

主仓库中有一些KotlinTest示例项目:
https://github.com/kotlintest/kotlintest/tree/master/kotlintest-samples

他们使用KotlinTest 3.0.x,对于gradle用户,构建文件如下所示:

apply plugin: 'org.junit.platform.gradle.plugin'

buildscript {
    ext.kotlin_version = '1.2.31'
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
    }
}

dependencies {
    testCompile 'io.kotlintest:kotlintest-runner-junit5:3.0.3'
}

我不会包含Maven示例,因为pom.xml是XML,因此很冗长,但是您可以在上面的链接中找到它。

08-17 01:47