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

holmos.webtest.junitextentions.annotations.RunAfter Maven / Gradle / Ivy

There is a newer version: 1.0.2u10
Show newest version
package holmos.webtest.junitextentions.annotations;

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

/**
 * 此方法在运行时候用,并且强制是方法级别的注解,带有此注解的方法表示此方法应该在注解中指定的方法名之后运行
 * 
 * @author 吴银龙([email protected])
 * */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RunAfter {
	String methodName() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy