Skip to content

Commit

Permalink
Geode-8705: fixing integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Udo Kohlmeyer committed Jul 21, 2021
1 parent bb342ab commit d9de048
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions extensions/geode-modules/build.gradle
Expand Up @@ -51,6 +51,7 @@ dependencies {
integrationTestImplementation(project(':extensions:geode-modules-test'))
integrationTestImplementation(project(':geode-dunit'))
integrationTestImplementation('pl.pragmatists:JUnitParams')
integrationTestImplementation('org.httpunit:httpunit')
integrationTestImplementation('org.apache.tomcat:catalina-ha:' + DependencyConstraints.get('tomcat6.version'))


Expand Down
Expand Up @@ -85,7 +85,8 @@ public void testCompletionDeploy() {
CommandCandidate candidate = gfshParserRule.complete(buffer);
assertThat(candidate.getCandidates()
.stream().map(completion -> completion.getValue().trim()).collect(Collectors.toList()))
.containsExactlyInAnyOrder("--dir", "--jar", "--jars", "--group", "--groups");
.containsExactlyInAnyOrder("--dir", "--jar", "--jars", "--group", "--groups",
"--dependencies");
}

@Test
Expand All @@ -94,7 +95,8 @@ public void testCompletionDeployWithSpace() {
CommandCandidate candidate = gfshParserRule.complete(buffer);
assertThat(candidate.getCandidates()
.stream().map(completion -> completion.getValue().trim()).collect(Collectors.toList()))
.containsExactlyInAnyOrder("--dir", "--jar", "--jars", "--group", "--groups");
.containsExactlyInAnyOrder("--dir", "--jar", "--jars", "--group", "--groups",
"--dependencies");
}

@Test
Expand Down

0 comments on commit d9de048

Please sign in to comment.