INNER CODE UNIT · Java
onSuites
citrusframework/citrus · core/citrus-api/src/main/java/org/citrusframework/AbstractSuiteContainerBuilder.java:49
public S onSuites(List<String> suiteNames) {
this.suiteNames.addAll(suiteNames);
return self;
}
/**
* Condition on test group name. The before test logic will only run when this condition matches.
* @param testGroups
*/
public S onTestGroup(String... testGroups) {
return onTestGroups(Arrays.asList(testGroups));
}
/**
* Condition on test group names. The before test logic will only run when this condition matches.
* @param testGroups
*/
public S onTestGroups(List<String> testGroups) {