gpt4 book ai didi

kotlin - kotlintest项目有一个样本结构

转载 作者:行者123 更新时间:2023-12-02 13:23:35 25 4
gpt4 key购买 nike

我目前正在使用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,因此很冗长,但是您可以在上面的链接中找到它。

关于kotlin - kotlintest项目有一个样本结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47983510/

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