diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-30 19:23:08 +0100 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2015-01-30 19:23:08 +0100 |
commit | da1b31b03bc70bf6feb1111e68e5ffd032a6d82c (patch) | |
tree | 871bafd9851a6508395e3d7a4a920129b23e006a /test | |
parent | b5286f576f470ad1665a7b1acc9ea276bc1a0c18 (diff) | |
parent | 1602b0f593cd0b9d0895177ce71827d934c8982b (diff) | |
download | dokka-da1b31b03bc70bf6feb1111e68e5ffd032a6d82c.tar.gz dokka-da1b31b03bc70bf6feb1111e68e5ffd032a6d82c.tar.bz2 dokka-da1b31b03bc70bf6feb1111e68e5ffd032a6d82c.zip |
Merge pull request #19 from orangy/ant-task
Ant task for Dokka
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 2cdaad5d..b0e23e0f 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -38,7 +38,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModule) -> val fragments = environment.getSourceFiles().map { session.getPackageFragment(it.getPackageFqName()) }.filterNotNull().distinct() val documentationModule = DocumentationModule("test") - val documentationBuilder = DocumentationBuilder(session, options) + val documentationBuilder = DocumentationBuilder(session, options, DokkaConsoleLogger) with(documentationBuilder) { documentationModule.appendFragments(fragments) } |