11package io .github .utplsql .cli ;
22
33import com .beust .jcommander .JCommander ;
4- import io .github .utplsql .api .types . CustomTypes ;
4+ import io .github .utplsql .api .CustomTypes ;
55import org .junit .Assert ;
66import org .junit .Test ;
77
@@ -38,7 +38,7 @@ public void reporterOptions_Default() {
3838
3939 @ Test
4040 public void reporterOptions_OneReporter () {
41- RunCommand runCmd = createCommand ("run" , "app/app@docker/xe " , "-f=ut_documentation_reporter" , "-o=output.txt" );
41+ RunCommand runCmd = createCommand ("run" , "app/app" , "-f=ut_documentation_reporter" , "-o=output.txt" );
4242
4343 List <ReporterOptions > reporterOptionsList = runCmd .getReporterOptionsList ();
4444
@@ -51,7 +51,7 @@ public void reporterOptions_OneReporter() {
5151
5252 @ Test
5353 public void reporterOptions_OneReporterForceScreen () {
54- RunCommand runCmd = createCommand ("run" , "app/app@docker/xe " , "-f=ut_documentation_reporter" , "-o=output.txt" , "-s" );
54+ RunCommand runCmd = createCommand ("run" , "app/app" , "-f=ut_documentation_reporter" , "-o=output.txt" , "-s" );
5555
5656 List <ReporterOptions > reporterOptionsList = runCmd .getReporterOptionsList ();
5757
@@ -64,7 +64,7 @@ public void reporterOptions_OneReporterForceScreen() {
6464
6565 @ Test
6666 public void reporterOptions_OneReporterForceScreenInverse () {
67- RunCommand runCmd = createCommand ("run" , "app/app@docker/xe " , "-f=ut_documentation_reporter" , "-s" , "-o=output.txt" );
67+ RunCommand runCmd = createCommand ("run" , "app/app" , "-f=ut_documentation_reporter" , "-s" , "-o=output.txt" );
6868
6969 List <ReporterOptions > reporterOptionsList = runCmd .getReporterOptionsList ();
7070
@@ -77,7 +77,7 @@ public void reporterOptions_OneReporterForceScreenInverse() {
7777
7878 @ Test
7979 public void reporterOptions_TwoReporters () {
80- RunCommand runCmd = createCommand ("run" , "app/app@docker/xe " ,
80+ RunCommand runCmd = createCommand ("run" , "app/app" ,
8181 "-f=ut_documentation_reporter" ,
8282 "-f=ut_coverage_html_reporter" , "-o=coverage.html" , "-s" );
8383
0 commit comments