Add basic test for getElementTextWithContext

This commit is contained in:
Ilya Kirillov
2023-07-11 14:00:24 +02:00
committed by Space Team
parent 743662ec7f
commit 24f60a542d
2 changed files with 52 additions and 1 deletions
+12 -1
View File
@@ -13,6 +13,9 @@ dependencies {
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
compileOnly(jpsModel()) { isTransitive = false }
compileOnly(jpsModelImpl()) { isTransitive = false }
testImplementation(projectTests(":compiler:tests-common"))
testImplementation(intellijCore())
}
sourceSets {
@@ -20,5 +23,13 @@ sourceSets {
projectDefault()
resources.srcDir(File(rootDir, "resources"))
}
"test" {}
"test" {
projectDefault()
}
}
testsJar()
projectTest(parallel = true) {
workingDir = rootDir
}