com.nordstrom.automation.junit.NoRetry 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.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Use this annotation to mark test methods and classes for which automatic retry is failures not desired:
*
*
* @Test
* @NoRetry
* public void testLongRunning() {
* // test implementation goes here
* }
*/
@Retention(RUNTIME)
@Target({TYPE, METHOD})
public @interface NoRetry { }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy