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 { }