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

arez.testng.CollectObserverErrors Maven / Gradle / Ivy

The newest version!
package arez.testng;

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

/**
 * Annotation applied to test methods that indicate that observer errors should not cause the test to fail.
 * Instead the errors should be collected and added to any fields of type {@link ObserverErrorCollector} that
 * are contained in the test.
 */
@Documented
@Target( ElementType.METHOD )
@Retention( RetentionPolicy.RUNTIME )
public @interface CollectObserverErrors
{
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy