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

net.thucydides.core.annotations.Steps Maven / Gradle / Ivy

package net.thucydides.core.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
 * Marks a class that implements test steps as individual methods.
 * Each method that represents a test step should be marked by the Step annotation.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Steps {
    boolean uniqueInstance() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy