Skip to content

Commit 105c733

Browse files
gnodetclaude
andcommitted
Add missing CliService method delegates to SingletonCliService
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e996f54 commit 105c733

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

test-infra/camel-test-infra-cli/src/main/java/org/apache/camel/test/infra/cli/services/CliServiceFactory.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ public String execute(String command) {
3333
return getService().execute(command);
3434
}
3535

36+
@Override
37+
public String execute(String command, Boolean getError, Boolean expectFail) {
38+
return getService().execute(command, getError, expectFail);
39+
}
40+
3641
@Override
3742
public String executeBackground(String command) {
3843
return getService().executeBackground(command);
@@ -43,6 +48,11 @@ public String executeGenericCommand(String command) {
4348
return getService().executeGenericCommand(command);
4449
}
4550

51+
@Override
52+
public String executeGenericCommand(String command, Boolean getError, Boolean expectFail) {
53+
return getService().executeGenericCommand(command, getError, expectFail);
54+
}
55+
4656
@Override
4757
public void copyFileInternally(String source, String destination) {
4858
getService().copyFileInternally(source, destination);

0 commit comments

Comments
 (0)