@@ -21,9 +21,10 @@ public class RunCommandConfig extends ConnectionConfig {
2121 private boolean dbmsOutput = false ;
2222 private boolean randomTestOrder = false ;
2323 private final Integer randomTestOrderSeed ;
24+ private final String [] tags ;
2425
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 ) {
2728 super (connectString );
2829 this .suitePaths = suitePaths ;
2930 this .reporters = reporters ;
@@ -39,12 +40,17 @@ public RunCommandConfig(String connectString, String[] suitePaths, ReporterConfi
3940 this .dbmsOutput = dbmsOutput ;
4041 this .randomTestOrder = randomTestOrder ;
4142 this .randomTestOrderSeed = randomTestOrderSeed ;
43+ this .tags = tags ;
4244 }
4345
4446 public String [] getSuitePaths () {
4547 return suitePaths ;
4648 }
4749
50+ public String [] getTags () {
51+ return tags ;
52+ }
53+
4854 public ReporterConfig [] getReporters () {
4955 return reporters ;
5056 }
0 commit comments