All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.actions.NoopTestAction Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
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";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy