INNER CODE UNIT · Java
onSuite
citrusframework/citrus · core/citrus-api/src/main/java/org/citrusframework/AbstractSuiteContainerBuilder.java:41
public S onSuite(String... suiteNames) {
return onSuites(Arrays.asList(suiteNames));
}
/**
* Condition on suite names. The before test logic will only run when this condition matches.
* @param suiteNames
*/
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) {