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

cucumber.annotation.Order Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.annotation;

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

/**
 * This annotation can be specified on hooks (methods annotated with {@link Before} and {@link After}) to specify
 * the order in which the hooks should run.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Order {
    int value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy