[KAPT] Migrate tests in kapt3-base and kapt3-cli to JUnit 5

This commit is contained in:
Dmitriy Novozhilov
2022-07-06 12:59:32 +03:00
committed by teamcity
parent b7cc781e97
commit fdf1b8b1c0
24 changed files with 329 additions and 327 deletions
+3 -4
View File
@@ -7,11 +7,9 @@ dependencies {
api(kotlinStdlib())
compileOnly(toolsJarApi())
testApi(commonDependency("junit:junit"))
testApiJUnit5()
testCompileOnly(toolsJarApi())
testRuntimeOnly(toolsJar())
testCompileOnly(toolsJarApi())
}
sourceSets {
@@ -22,6 +20,7 @@ sourceSets {
testsJar {}
projectTest {
useJUnitPlatform()
workingDir = rootDir
dependsOn(":dist")
}
}