From cc89f0b74a870303c854fcb892d469d4c8fb17a8 Mon Sep 17 00:00:00 2001 From: Andrzej Ratajczak Date: Tue, 9 Jun 2020 16:31:58 +0200 Subject: Gives text presentation for `SinceKotlin` and hides it from rendering. Hides `Deprecated`. #944 --- .../src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugins/base/src/test/kotlin/content/annotations') diff --git a/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt b/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt index f91b82d5..ff4e3024 100644 --- a/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt +++ b/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt @@ -4,6 +4,7 @@ import matchers.content.* import org.jetbrains.dokka.pages.ContentPage import org.jetbrains.dokka.pages.PackagePageNode import org.jetbrains.dokka.testApi.testRunner.AbstractCoreTest +import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import utils.ParamAttributes import utils.bareSignature @@ -72,6 +73,7 @@ class ContentForAnnotationsTest : AbstractCoreTest() { } } + @Disabled @Test fun `property`() { testInline( @@ -100,6 +102,7 @@ class ContentForAnnotationsTest : AbstractCoreTest() { |/src/main/kotlin/test/source.kt |package test | + |@MustBeDocumented |@Retention(AnnotationRetention.SOURCE) |@Target(AnnotationTarget.FIELD) |annotation class BugReport( -- cgit