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

com.nordstrom.automation.junit.NoRetry 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.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