com.consol.citrus.actions.NoopTestAction 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.actions;
import com.consol.citrus.TestAction;
import com.consol.citrus.context.TestContext;
/**
* Special test action doing nothing but implementing the test action interface. This is useful during Java dsl fluent API
* that needs to return a test action but this should not be included or executed during the test run. See test behavior applying
* test actions.
*
* @author Christoph Deppisch
*/
public class NoopTestAction implements TestAction {
@Override
public void execute(TestContext context) {
// do nothing
}
@Override
public String getName() {
return "noop";
}
}