aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/utils
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2023-10-24 23:28:10 +0300
committerGitHub <noreply@github.com>2023-10-24 23:28:10 +0300
commitc745f96781522f4b126e64cb6c2bc1b249694d0d (patch)
tree9e50da010ce321711a70152ed111e094ac6947e0 /plugins/base/src/test/kotlin/utils
parent820e3b7cd449ba06f365eddbf9fe82cbfecc411e (diff)
downloaddokka-c745f96781522f4b126e64cb6c2bc1b249694d0d.tar.gz
dokka-c745f96781522f4b126e64cb6c2bc1b249694d0d.tar.bz2
dokka-c745f96781522f4b126e64cb6c2bc1b249694d0d.zip
[K2] Enable Java tests for symbols (#3203)
Diffstat (limited to 'plugins/base/src/test/kotlin/utils')
-rw-r--r--plugins/base/src/test/kotlin/utils/TagsAnnotations.kt33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/base/src/test/kotlin/utils/TagsAnnotations.kt b/plugins/base/src/test/kotlin/utils/TagsAnnotations.kt
index 103b92d4..a81b1dae 100644
--- a/plugins/base/src/test/kotlin/utils/TagsAnnotations.kt
+++ b/plugins/base/src/test/kotlin/utils/TagsAnnotations.kt
@@ -40,36 +40,3 @@ annotation class OnlyDescriptors(val reason: String = "")
)
@Tag("onlyDescriptorsMPP")
annotation class OnlyDescriptorsMPP(val reason: String = "")
-
-
-/**
- * For test containing .java code
- * These tests are disabled in K2 due to Standlone prototype. https://github.com/Kotlin/dokka/issues/3114
- */
-@Target(
- AnnotationTarget.CLASS,
- AnnotationTarget.FUNCTION,
- AnnotationTarget.PROPERTY_GETTER,
- AnnotationTarget.PROPERTY_SETTER
-)
-@Retention(
- AnnotationRetention.RUNTIME
-)
-@Tag("javaCode")
-annotation class JavaCode
-
-/**
- * For Kotlin test using JDK
- * These tests are disabled in K2 due to Standlone prototype. https://github.com/Kotlin/dokka/issues/3114
- */
-@Target(
- AnnotationTarget.CLASS,
- AnnotationTarget.FUNCTION,
- AnnotationTarget.PROPERTY_GETTER,
- AnnotationTarget.PROPERTY_SETTER
-)
-@Retention(
- AnnotationRetention.RUNTIME
-)
-@Tag("usingJDK")
-annotation class UsingJDK