Fixed boolean-type functions producing invalid parameters. Closes #1
This commit is contained in:
parent
cdf6294b39
commit
84c2474ffc
3 changed files with 6 additions and 10 deletions
|
@ -68,8 +68,8 @@ class DokkaOperationTest {
|
|||
path + "/lib/bld/kotlin-as-java-plugin-" + dokkaJar + ";path1;path2;path3;path4",
|
||||
"-sourceSet", "-src " + path + "/src/main/kotlin",
|
||||
"-outputDir", path + "/build",
|
||||
"-delayTemplateSubstitution", "true",
|
||||
"-failOnWarning", "true",
|
||||
"-delayTemplateSubstitution",
|
||||
"-failOnWarning",
|
||||
"-globalLinks", "s^link^^s2^link2",
|
||||
"-globalPackageOptions", "option1;option2;option3;option4",
|
||||
"-globalSrcLinks_", "link1;link2;link3;link4",
|
||||
|
@ -77,10 +77,10 @@ class DokkaOperationTest {
|
|||
"-loggingLevel", "debug",
|
||||
"-moduleName", "name",
|
||||
"-moduleVersion", "1.0",
|
||||
"-noSuppressObviousFunctions", "true",
|
||||
"-offlineMode", "true",
|
||||
"-noSuppressObviousFunctions",
|
||||
"-offlineMode",
|
||||
"-pluginConfiguration", "{name}={\\\"json\\\"}^^{\\\"name2\\\"}={json2}",
|
||||
"-suppressInheritedMembers", "true");
|
||||
"-suppressInheritedMembers");
|
||||
|
||||
assertThat(args).hasSize(matches.size());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue