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

com.consol.citrus.AbstractExceptionContainerBuilder Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy