@API(status=STABLE) public interface Ru extends LambdaGlue
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.
DEFAULT_AFTER_ORDER, DEFAULT_BEFORE_ORDER, EMPTY_TAG_EXPRESSIONS, NO_TIMEOUT
Modifier and Type | Method and Description |
---|---|
default void |
А(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
А(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
А(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
А(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
А(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
А(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
А(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
А(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
А(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
А(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
А(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
А(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
А(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
А(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
А(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
А(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
А(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
А(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
А(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
А(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Дано(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Дано(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Дано(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Дано(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Дано(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Дано(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Дано(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Дано(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Дано(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Дано(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Дано(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Дано(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Дано(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Дано(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Дано(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Допустим(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Допустим(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Допустим(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Допустим(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Допустим(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Допустим(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Допустим(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Допустим(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Допустим(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Допустим(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Допустим(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Если(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Если(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Если(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Если(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Если(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Если(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Если(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Если(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Если(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Если(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Если(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Если(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Если(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Если(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Если(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Если(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Если(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Если(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Если(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Если(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Затем(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Затем(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Затем(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Затем(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Затем(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Затем(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Затем(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Затем(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Затем(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Затем(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Затем(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Затем(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Затем(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Затем(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Затем(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
И(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
И(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
И(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
И(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
И(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
И(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
И(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
И(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
И(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
И(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
И(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
И(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
И(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
И(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
И(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
И(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
И(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
И(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
И(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
И(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Иначе(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Иначе(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Иначе(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Иначе(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Иначе(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Иначе(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Иначе(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Иначе(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Иначе(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Иначе(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Иначе(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Когда(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Когда(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Когда(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Когда(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Когда(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Когда(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Когда(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Когда(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Когда(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Когда(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Когда(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Когда(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Когда(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Когда(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Когда(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Ктомуже(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Ктомуже(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Ктомуже(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Ктомуже(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Ктомуже(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Ктомуже(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Ктомуже(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Ктомуже(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Ктомуже(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Ктомуже(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Ктомуже(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Но(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Но(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Но(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Но(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Но(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Но(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Но(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Но(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Но(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Но(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Но(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Но(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Но(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Но(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Но(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Но(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Но(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Но(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Но(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Но(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Пусть(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Пусть(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Пусть(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Пусть(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Пусть(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Пусть(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Пусть(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Пусть(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Пусть(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Пусть(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Пусть(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Также(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Также(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Также(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Также(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Также(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Также(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Также(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Также(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Также(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Также(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Также(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Также(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Также(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Также(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Также(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Также(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Также(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Также(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Также(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Также(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
То(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
То(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
То(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
То(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
То(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
То(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
То(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
То(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
То(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
То(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
То(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
То(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
То(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
То(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
То(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
То(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
То(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
То(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
То(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
То(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
default void |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A0 body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1> void |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A1<T1> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2> void |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A2<T1,T2> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3> void |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A3<T1,T2,T3> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A4<T1,T2,T3,T4> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Тогда(String expression,
long timeoutMillis,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Deprecated.
use a library based solution instead. E.g. Awaitility
or JUnit 5s Assertions.assertTimeout.
|
default void |
Тогда(String expression,
StepdefBody.A0 body)
Creates a new step definition.
|
default <T1> void |
Тогда(String expression,
StepdefBody.A1<T1> body)
Creates a new step definition.
|
default <T1,T2> void |
Тогда(String expression,
StepdefBody.A2<T1,T2> body)
Creates a new step definition.
|
default <T1,T2,T3> void |
Тогда(String expression,
StepdefBody.A3<T1,T2,T3> body)
Creates a new step definition.
|
default <T1,T2,T3,T4> |
Тогда(String expression,
StepdefBody.A4<T1,T2,T3,T4> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5> |
Тогда(String expression,
StepdefBody.A5<T1,T2,T3,T4,T5> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6> |
Тогда(String expression,
StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7> |
Тогда(String expression,
StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8> |
Тогда(String expression,
StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
Creates a new step definition.
|
default <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Тогда(String expression,
StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
Creates a new step definition.
|
After, After, After, After, After, After, After, After, After, After, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, AfterStep, Before, Before, Before, Before, Before, Before, Before, Before, Before, Before, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep, BeforeStep
default void А(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void А(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void А(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void А(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void А(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void А(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void А(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void А(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void А(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void А(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void А(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void А(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void А(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void А(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void А(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void А(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void А(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void А(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void А(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void А(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Дано(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Дано(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Дано(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Дано(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Дано(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Дано(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Дано(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Дано(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Дано(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Дано(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Дано(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Дано(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Дано(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Дано(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Дано(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Дано(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Дано(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Дано(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Дано(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Дано(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Допустим(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Допустим(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Допустим(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Допустим(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Допустим(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Допустим(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Допустим(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Допустим(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Допустим(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Допустим(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Допустим(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Допустим(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Допустим(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Допустим(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Допустим(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Допустим(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Допустим(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Допустим(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Допустим(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Допустим(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Если(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Если(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Если(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Если(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Если(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Если(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Если(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Если(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Если(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Если(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Если(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Если(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Если(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Если(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Если(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Если(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Если(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Если(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Если(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Если(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Затем(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Затем(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Затем(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Затем(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Затем(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Затем(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Затем(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Затем(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Затем(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Затем(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Затем(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Затем(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Затем(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Затем(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Затем(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Затем(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Затем(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Затем(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Затем(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Затем(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void И(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void И(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void И(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void И(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void И(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void И(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void И(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void И(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void И(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void И(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void И(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void И(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void И(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void И(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void И(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void И(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void И(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void И(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void И(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void И(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Иначе(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Иначе(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Иначе(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Иначе(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Иначе(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Иначе(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Иначе(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Иначе(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Иначе(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Иначе(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Иначе(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Иначе(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Иначе(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Иначе(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Иначе(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Иначе(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Иначе(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Иначе(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Иначе(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Иначе(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Ктомуже(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Ктомуже(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Ктомуже(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Ктомуже(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Ктомуже(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Ктомуже(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Ктомуже(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Ктомуже(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Ктомуже(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Ктомуже(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Ктомуже(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Ктомуже(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Когда(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Когда(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Когда(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Когда(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Когда(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Когда(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Когда(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Когда(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Когда(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Когда(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Когда(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Когда(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Когда(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Когда(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Когда(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Когда(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Когда(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Когда(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Когда(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Когда(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Но(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Но(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Но(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Но(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Но(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Но(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Но(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Но(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Но(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Но(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Но(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Но(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Но(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Но(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Но(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Но(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Но(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Но(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Но(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Но(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Пусть(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Пусть(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Пусть(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Пусть(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Пусть(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Пусть(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Пусть(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Пусть(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Пусть(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Пусть(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Пусть(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Пусть(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Пусть(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Пусть(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Пусть(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Пусть(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Пусть(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Пусть(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Пусть(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Пусть(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Также(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Также(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Также(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Также(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Также(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Также(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Также(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Также(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Также(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Также(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Также(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Также(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Также(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Также(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Также(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Также(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Также(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Также(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Также(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Также(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void То(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void То(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void То(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void То(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void То(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void То(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void То(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void То(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void То(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void То(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void То(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void То(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void То(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void То(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void То(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void То(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void То(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void То(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void То(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void То(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersdefault void Тогда(String expression, StepdefBody.A0 body)
expression
- the cucumber expressionbody
- a lambda expression with no parameters@Deprecated default void Тогда(String expression, long timeoutMillis, StepdefBody.A0 body)
expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with no parametersdefault <T1> void Тогда(String expression, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressionbody
- a lambda expression with 1 parameters@Deprecated default <T1> void Тогда(String expression, long timeoutMillis, StepdefBody.A1<T1> body)
T1
- type of argument 1expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 1 parametersdefault <T1,T2> void Тогда(String expression, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressionbody
- a lambda expression with 2 parameters@Deprecated default <T1,T2> void Тогда(String expression, long timeoutMillis, StepdefBody.A2<T1,T2> body)
T1
- type of argument 1T2
- type of argument 2expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 2 parametersdefault <T1,T2,T3> void Тогда(String expression, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressionbody
- a lambda expression with 3 parameters@Deprecated default <T1,T2,T3> void Тогда(String expression, long timeoutMillis, StepdefBody.A3<T1,T2,T3> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 3 parametersdefault <T1,T2,T3,T4> void Тогда(String expression, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressionbody
- a lambda expression with 4 parameters@Deprecated default <T1,T2,T3,T4> void Тогда(String expression, long timeoutMillis, StepdefBody.A4<T1,T2,T3,T4> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 4 parametersdefault <T1,T2,T3,T4,T5> void Тогда(String expression, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressionbody
- a lambda expression with 5 parameters@Deprecated default <T1,T2,T3,T4,T5> void Тогда(String expression, long timeoutMillis, StepdefBody.A5<T1,T2,T3,T4,T5> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 5 parametersdefault <T1,T2,T3,T4,T5,T6> void Тогда(String expression, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressionbody
- a lambda expression with 6 parameters@Deprecated default <T1,T2,T3,T4,T5,T6> void Тогда(String expression, long timeoutMillis, StepdefBody.A6<T1,T2,T3,T4,T5,T6> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 6 parametersdefault <T1,T2,T3,T4,T5,T6,T7> void Тогда(String expression, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressionbody
- a lambda expression with 7 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7> void Тогда(String expression, long timeoutMillis, StepdefBody.A7<T1,T2,T3,T4,T5,T6,T7> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 7 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8> void Тогда(String expression, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressionbody
- a lambda expression with 8 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8> void Тогда(String expression, long timeoutMillis, StepdefBody.A8<T1,T2,T3,T4,T5,T6,T7,T8> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 8 parametersdefault <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Тогда(String expression, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressionbody
- a lambda expression with 9 parameters@Deprecated default <T1,T2,T3,T4,T5,T6,T7,T8,T9> void Тогда(String expression, long timeoutMillis, StepdefBody.A9<T1,T2,T3,T4,T5,T6,T7,T8,T9> body)
T1
- type of argument 1T2
- type of argument 2T3
- type of argument 3T4
- type of argument 4T5
- type of argument 5T6
- type of argument 6T7
- type of argument 7T8
- type of argument 8T9
- type of argument 9expression
- the cucumber expressiontimeoutMillis
- timeout in milliseconds. 0 (default) means no restriction.body
- a lambda expression with 9 parametersCopyright © 2019. All rights reserved.