public static void Then(Pattern regexp, Closure body) throws Throwable {
registerStepDefinition(regexp, body);
}
private static void registerStepDefinition(Pattern regexp, Closure body) throws Throwable {
groovyLanguage.addStepDefinition(new GroovyStepDefinition(groovyLanguage, regexp, body));
}