我正在尝试将另一个模块添加到我的 Kotlin 项目中,专门用于集成测试 - 与test
kotlin 插件创建的标准模块一起使用。这是我当前添加的配置sourceset
:
sourceSets {
testIntegration {
java.srcDir 'src/testIntegration/java'
kotlin.srcDir 'src/testIntegration/kotlin'
resources.srcDir 'src/testIntegration/resources'
compileClasspath += main.output
runtimeClasspath += main.output
}
}
configurations {
provided
testCompile.extendsFrom provided
testIntegrationCompile.extendsFrom testCompile
testIntegrationRuntime.extendsFrom testRuntime
}
task testIntegration(type: Test) {
testClassesDirs = sourceSets.testIntegration.output.classesDirs
classpath = sourceSets.testIntegration.runtimeClasspath
}
这似乎可行,但是 IntelliJ 不会将新源集作为测试模块。我可以手动标记它,但每次 Gradle 运行时它都会重置。这也意味着 Intellij 填写项目结构设置中Output Path
的字段而不是Test Output Path
字段。
要解决以下配置的问题:
apply plugin: 'idea'
idea {
module {
testSourceDirs += project.sourceSets.testIntegration.java.srcDirs
testSourceDirs += project.sourceSets.testIntegration.kotlin.srcDirs
testSourceDirs += project.sourceSets.testIntegration.resources.srcDirs
}
}
但是,这似乎指示 IntelliJTest Output Path
与\out\test\classes
标准“测试”模块相同并导致冲突问题。我希望它将输出路径保持为本来\out\testIntegration\classes
可以使用的原始路径。
有什么方法可以指示 IntelliJ 正确选择这个新的测试源集并填写正确的输出路径?