Add test for consistency check between the Kotlin specification and spec tests

This commit is contained in:
victor.petukhov
2019-08-19 12:05:47 +03:00
parent 4f73e100d0
commit f78faeaa3c
5 changed files with 224 additions and 0 deletions
+9
View File
@@ -9,6 +9,7 @@ dependencies {
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
testRuntimeOnly(intellijPluginDep("java"))
}
compile("org.jsoup:jsoup:1.10.3")
}
sourceSets {
@@ -45,3 +46,11 @@ val remoteRunTests by task<Test> {
includeTests.forEach { includeTestsMatching(packagePrefix + it) }
}
}
val specConsistencyTests by task<Test> {
workingDir = rootDir
filter {
includeTestsMatching("org.jetbrains.kotlin.spec.consistency.SpecTestsConsistencyTest")
}
}