diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-16 00:11:04 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-16 00:11:04 +0400 |
commit | d25b896ec692aeb35a5465b624508851c96dfd1d (patch) | |
tree | c68abcd1c00c06afd6f364275169ef8356f1d02f /test/src | |
parent | 62177099390dccf4fba3facb668415b8633e6e24 (diff) | |
download | dokka-d25b896ec692aeb35a5465b624508851c96dfd1d.tar.gz dokka-d25b896ec692aeb35a5465b624508851c96dfd1d.tar.bz2 dokka-d25b896ec692aeb35a5465b624508851c96dfd1d.zip |
Add DocumentationOptions to support non-public API docs (used in tests)
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/TestAPI.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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) |