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

org.test4j.module.spec.internal.IGiven Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package org.test4j.module.spec.internal;

import org.test4j.functions.SExecutor;

/**
 * IGiven
 *
 * @author wudarui
 */
@SuppressWarnings({"unused"})
public interface IGiven extends IAroundInitial, IWhen {
    /**
     * 前置条件
     *
     * @param description description
     * @param lambda      lambda
     * @return ignore
     * @throws RuntimeException RuntimeException
     */
    IGiven given(String description, SExecutor lambda) throws RuntimeException;

    /**
     * 前置条件
     *
     * @param lambda lambda
     * @return ignore
     */
    IGiven given(SExecutor lambda) throws RuntimeException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy