From 6a7d1c9aedfb12f309a410c404a830cb9d3972d3 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Tue, 11 Aug 2020 11:10:30 +0200 Subject: Implement DocumentableFilterSuppressedTransformer --- .../main/kotlin/org/jetbrains/dokka/it/AbstractIntegrationTest.kt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'integration-tests/src') diff --git a/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/AbstractIntegrationTest.kt b/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/AbstractIntegrationTest.kt index d2e3c980..c4914652 100644 --- a/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/AbstractIntegrationTest.kt +++ b/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/AbstractIntegrationTest.kt @@ -68,4 +68,12 @@ abstract class AbstractIntegrationTest { } } } + + protected fun assertNoSuppressedMarker(file: File) { + val fileText = file.readText() + assertFalse( + fileText.contains("§SUPPRESSED§"), + "Unexpected `§SUPPRESSED§` in file ${file.path}" + ) + } } -- cgit