From d25b896ec692aeb35a5465b624508851c96dfd1d Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Wed, 16 Jul 2014 00:11:04 +0400 Subject: Add DocumentationOptions to support non-public API docs (used in tests) --- test/src/TestAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/src') diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index 0c80d2c9..27d02710 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -32,7 +32,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModule) -> context.getPackageFragment(file)!!.fqName }.toSet() - context.createDocumentationModule("test", module, packageSet) + context.createDocumentationModule("test", module, packageSet, DocumentationOptions(includeNonPublic = true)) } verifier(documentation) Disposer.dispose(environment) -- cgit