From 94d8cc0102cc5787d860ba280a4638477d86e8c1 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 2 Mar 2015 17:57:05 +0100 Subject: don't include members in documentation if they have @suppress tag --- test/src/TestAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index 6fc83279..ebee1290 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -32,7 +32,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModule) -> addSources(files.toList()) addClasspath(files.map { File(it)}.filter { it.isDirectory()} ) } - val options = DocumentationOptions(includeNonPublic = true, sourceLinks = listOf()) + val options = DocumentationOptions(includeNonPublic = true, skipEmptyPackages = false, sourceLinks = listOf()) val documentation = buildDocumentationModule(environment, "test", options, logger = DokkaConsoleLogger) verifier(documentation) Disposer.dispose(environment) -- cgit