All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
cucumber.runtime.groovy.HE Maven / Gradle / Ivy
package cucumber.runtime.groovy;
import groovy.lang.Closure;
import java.util.regex.Pattern;
public class HE {
public static void אבל(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void אבל(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
public static void אז(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void אז(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
public static void אזי(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void אזי(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
public static void בהינתן(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void בהינתן(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
public static void וגם(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void וגם(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
public static void כאשר(Pattern regexp, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, 0, body);
}
public static void כאשר(Pattern regexp, int timeoutMillis, Closure body) throws Throwable {
GroovyBackend.instance.addStepDefinition(regexp, timeoutMillis, body);
}
}