INNER CODE UNIT · Java
onTestGroup
citrusframework/citrus · core/citrus-api/src/main/java/org/citrusframework/AbstractSuiteContainerBuilder.java:58
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) {
this.testGroups.addAll(testGroups);
return self;
}
/**
* Condition on system property with value. The before test logic will only run when this condition matches.
* @param name
* @param value
*/