@@ -22,9 +22,10 @@ public class RunCommandConfig extends ConnectionConfig {
22
22
private boolean randomTestOrder = false ;
23
23
private final Integer randomTestOrderSeed ;
24
24
private final String [] tags ;
25
+ private final String [] coverageSchemes ;
25
26
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 ) {
28
29
super (connectString );
29
30
this .suitePaths = suitePaths ;
30
31
this .reporters = reporters ;
@@ -41,6 +42,7 @@ public RunCommandConfig(String connectString, String[] suitePaths, ReporterConfi
41
42
this .randomTestOrder = randomTestOrder ;
42
43
this .randomTestOrderSeed = randomTestOrderSeed ;
43
44
this .tags = tags ;
45
+ this .coverageSchemes = coverageSchemes ;
44
46
}
45
47
46
48
public String [] getSuitePaths () {
@@ -102,4 +104,6 @@ public boolean isRandomTestOrder() {
102
104
public Integer getRandomTestOrderSeed () {
103
105
return randomTestOrderSeed ;
104
106
}
107
+
108
+ public String [] getCoverageSchemes () { return coverageSchemes ; }
105
109
}
0 commit comments