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

io.cucumber.java8.Gl Maven / Gradle / Ivy

package io.cucumber.java8;

import io.cucumber.java8.StepDefinitionBody.A0;
import io.cucumber.java8.StepDefinitionBody.A1;
import io.cucumber.java8.StepDefinitionBody.A2;
import io.cucumber.java8.StepDefinitionBody.A3;
import io.cucumber.java8.StepDefinitionBody.A4;
import io.cucumber.java8.StepDefinitionBody.A5;
import io.cucumber.java8.StepDefinitionBody.A6;
import io.cucumber.java8.StepDefinitionBody.A7;
import io.cucumber.java8.StepDefinitionBody.A8;
import io.cucumber.java8.StepDefinitionBody.A9;

import io.cucumber.java8.LambdaGlueRegistry;
import io.cucumber.java8.Java8StepDefinition;
import io.cucumber.java8.LambdaGlue;

import org.apiguardian.api.API;

/**
 * Galician - galego
 * 

* To execute steps in a feature file the steps must be * connected to executable code. This can be done by * implementing this interface. *

* The parameters extracted from the step by the expression * along with the data table or doc string argument are provided as * arguments to the lambda expression. *

* The types of the parameters are determined by the cucumber or * regular expression. *

* The type of the data table or doc string argument is determined * by the argument name value. When none is provided cucumber will * attempt to transform the data table or doc string to the the * type of last argument. */ @API(status = API.Status.STABLE) public interface Gl extends LambdaGlue { /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Cando(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Cando(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Cando(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Cando(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Cando(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Cando(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Cando(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Cando(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Cando(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Cando(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Dada(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Dada(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Dada(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Dada(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Dada(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Dada(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Dada(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Dada(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Dada(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Dada(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Dadas(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Dadas(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Dadas(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Dadas(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Dadas(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Dadas(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Dadas(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Dadas(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Dadas(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Dadas(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Dado(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Dado(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Dado(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Dado(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Dado(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Dado(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Dado(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Dado(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Dado(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Dado(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Dados(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Dados(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Dados(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Dados(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Dados(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Dados(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Dados(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Dados(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Dados(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Dados(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void E(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void E(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void E(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void E(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void E(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void E(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void E(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void E(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void E(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void E(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Entón(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Entón(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Entón(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Entón(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Entón(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Entón(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Entón(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Entón(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Entón(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Entón(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Logo(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Logo(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Logo(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Logo(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Logo(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Logo(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Logo(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Logo(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Logo(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Logo(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Mais(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Mais(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Mais(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Mais(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Mais(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Mais(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Mais(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Mais(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Mais(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Mais(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with no parameters */ default void Pero(String expression, A0 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A0.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 1 parameters * * @param type of argument 1 */ default void Pero(String expression, A1 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A1.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 2 parameters * * @param type of argument 1 * @param type of argument 2 */ default void Pero(String expression, A2 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A2.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 3 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 */ default void Pero(String expression, A3 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A3.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 4 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 */ default void Pero(String expression, A4 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A4.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 5 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 */ default void Pero(String expression, A5 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A5.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 6 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 */ default void Pero(String expression, A6 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A6.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 7 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 */ default void Pero(String expression, A7 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A7.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 8 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 */ default void Pero(String expression, A8 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A8.class, body)); } /** * Creates a new step definition. * * @param expression the cucumber expression * @param body a lambda expression with 9 parameters * * @param type of argument 1 * @param type of argument 2 * @param type of argument 3 * @param type of argument 4 * @param type of argument 5 * @param type of argument 6 * @param type of argument 7 * @param type of argument 8 * @param type of argument 9 */ default void Pero(String expression, A9 body) { LambdaGlueRegistry.INSTANCE.get().addStepDefinition(Java8StepDefinition.create(expression, A9.class, body)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy