@@ -22,9 +22,10 @@ public class RunCommandConfig extends ConnectionConfig {
2222 private boolean randomTestOrder = false ;
2323 private final Integer randomTestOrderSeed ;
2424 private final String [] tags ;
25+ private final String [] coverageSchemes ;
2526
26- @ ConstructorProperties ({"connectString" , "suitePaths" , "reporters" , "outputAnsiColor" , "failureExitCode" , "skipCompatibilityCheck" , "includePackages" , "excludePackages" , "sourceMapping" , "testMapping" , "logConfigLevel" , "timeoutInMinutes" , "dbmsOutput" , "randomTestOrder" , "randomTestOrderSeed" , "tags" })
27- public RunCommandConfig (String connectString , String [] suitePaths , ReporterConfig [] reporters , boolean outputAnsiColor , Integer failureExitCode , boolean skipCompatibilityCheck , String [] includePackages , String [] excludePackages , FileMapperConfig sourceMapping , FileMapperConfig testMapping , ConfigLevel logConfigLevel , Integer timeoutInMinutes , boolean dbmsOutput , boolean randomTestOrder , Integer randomTestOrderSeed , String [] tags ) {
27+ @ ConstructorProperties ({"connectString" , "suitePaths" , "reporters" , "outputAnsiColor" , "failureExitCode" , "skipCompatibilityCheck" , "includePackages" , "excludePackages" , "sourceMapping" , "testMapping" , "logConfigLevel" , "timeoutInMinutes" , "dbmsOutput" , "randomTestOrder" , "randomTestOrderSeed" , "tags" , "coverageSchemes" })
28+ public RunCommandConfig (String connectString , String [] suitePaths , ReporterConfig [] reporters , boolean outputAnsiColor , Integer failureExitCode , boolean skipCompatibilityCheck , String [] includePackages , String [] excludePackages , FileMapperConfig sourceMapping , FileMapperConfig testMapping , ConfigLevel logConfigLevel , Integer timeoutInMinutes , boolean dbmsOutput , boolean randomTestOrder , Integer randomTestOrderSeed , String [] tags , String [] coverageSchemes ) {
2829 super (connectString );
2930 this .suitePaths = suitePaths ;
3031 this .reporters = reporters ;
@@ -41,6 +42,7 @@ public RunCommandConfig(String connectString, String[] suitePaths, ReporterConfi
4142 this .randomTestOrder = randomTestOrder ;
4243 this .randomTestOrderSeed = randomTestOrderSeed ;
4344 this .tags = tags ;
45+ this .coverageSchemes = coverageSchemes ;
4446 }
4547
4648 public String [] getSuitePaths () {
@@ -102,4 +104,6 @@ public boolean isRandomTestOrder() {
102104 public Integer getRandomTestOrderSeed () {
103105 return randomTestOrderSeed ;
104106 }
107+
108+ public String [] getCoverageSchemes () { return coverageSchemes ; }
105109}
0 commit comments