diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-14 19:34:28 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-14 19:34:28 +0400 |
commit | 1aa62f8071939f1a2b3640e00378cd86b8599b9c (patch) | |
tree | 47c2c9add7695702cc4f8d3fa898d68123f27875 /test | |
parent | 94b3ed6fae39c121e67ee80596c10de93a206695 (diff) | |
download | dokka-1aa62f8071939f1a2b3640e00378cd86b8599b9c.tar.gz dokka-1aa62f8071939f1a2b3640e00378cd86b8599b9c.tar.bz2 dokka-1aa62f8071939f1a2b3640e00378cd86b8599b9c.zip |
Classpath support and custom module name from commandline
Diffstat (limited to 'test')
-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 5ecdf1fb..0c80d2c9 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(module, packageSet) + context.createDocumentationModule("test", module, packageSet) } verifier(documentation) Disposer.dispose(environment) |