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

io.cucumber.java.fr.Etqu Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package io.cucumber.java.fr;

import io.cucumber.java.StepDefinitionAnnotations;
import io.cucumber.java.StepDefinitionAnnotation;

import org.apiguardian.api.API;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * To execute steps in a feature file the steps must be
 * connected to executable code. This can be done by annotating
 * a method with a cucumber or regular expression.
 * 

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

* 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 type * of the last argument. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) @StepDefinitionAnnotation @Documented @Repeatable(Etqu.Etqus.class) @API(status = API.Status.STABLE) public @interface Etqu { /** * A cucumber or regular expression. * * @return a cucumber or regular expression */ String value(); /** * Allows the use of multiple 'Etqu's on a single method. */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @StepDefinitionAnnotations @Documented @interface Etqus { Etqu[] value(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy