com.nordstrom.automation.junit.MethodWatchers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-foundation Show documentation
Show all versions of junit-foundation Show documentation
This is the foundation framework for JUnit automation
package com.nordstrom.automation.junit;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* This annotation is assigned to test classes and enables you to attach one or more method watcher class,
* which implement the {@link MethodWatcher} interface. To activate this feature, run with the {@link
* HookInstallingRunner}.
*/
@Retention(RUNTIME)
@Target({TYPE})
@Inherited
public @interface MethodWatchers {
/**
* Get specified method watcher(s).
*
* @return array of method watcher classes
*/
Class extends MethodWatcher>[] value() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy