@@ -21,9 +21,10 @@ public class RunCommandConfig extends ConnectionConfig {
21
21
private boolean dbmsOutput = false ;
22
22
private boolean randomTestOrder = false ;
23
23
private final Integer randomTestOrderSeed ;
24
+ private final String [] tags ;
24
25
25
- @ ConstructorProperties ({"connectString" , "suitePaths" , "reporters" , "outputAnsiColor" , "failureExitCode" , "skipCompatibilityCheck" , "includePackages" , "excludePackages" , "sourceMapping" , "testMapping" , "logConfigLevel" , "timeoutInMinutes" , "dbmsOutput" , "randomTestOrder" , "randomTestOrderSeed" })
26
- 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 ) {
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
28
super (connectString );
28
29
this .suitePaths = suitePaths ;
29
30
this .reporters = reporters ;
@@ -39,12 +40,17 @@ public RunCommandConfig(String connectString, String[] suitePaths, ReporterConfi
39
40
this .dbmsOutput = dbmsOutput ;
40
41
this .randomTestOrder = randomTestOrder ;
41
42
this .randomTestOrderSeed = randomTestOrderSeed ;
43
+ this .tags = tags ;
42
44
}
43
45
44
46
public String [] getSuitePaths () {
45
47
return suitePaths ;
46
48
}
47
49
50
+ public String [] getTags () {
51
+ return tags ;
52
+ }
53
+
48
54
public ReporterConfig [] getReporters () {
49
55
return reporters ;
50
56
}
0 commit comments