aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt')
-rw-r--r--integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt18
1 files changed, 18 insertions, 0 deletions
diff --git a/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt b/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt
new file mode 100644
index 00000000..9f3a46dd
--- /dev/null
+++ b/integration-tests/src/test/kotlin/com/google/devtools/ksp/test/PsiCacheIT.kt
@@ -0,0 +1,18 @@
+package com.google.devtools.ksp.test
+
+import org.gradle.testkit.runner.GradleRunner
+import org.junit.Rule
+import org.junit.Test
+
+class PsiCacheIT {
+ @Rule
+ @JvmField
+ val project: TemporaryTestProject = TemporaryTestProject("psi-cache", "test-processor")
+
+ @Test
+ fun testPsiCache() {
+ val gradleRunner = GradleRunner.create().withProjectDir(project.root)
+
+ gradleRunner.withArguments("assemble").build()
+ }
+}