com.consol.citrus.AbstractExceptionContainerBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
package com.consol.citrus;
import com.consol.citrus.container.AbstractActionContainer;
/**
* @author Christoph Deppisch
*/
public abstract class AbstractExceptionContainerBuilder> extends AbstractTestContainerBuilder {
/**
* Fills container with actions.
* @param actions
* @return
*/
public S when(TestAction... actions) {
return actions(actions);
}
/**
* Fills container with actions.
* @param actions
* @return
*/
public S when(TestActionBuilder>... actions) {
return actions(actions);
}
}