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

com.nordstrom.automation.junit.MethodWatchers Maven / Gradle / Ivy

There is a newer version: 17.1.1
Show newest version
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[] value() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy