
org.specrunner.expressions.Unsilent Maven / Gradle / Ivy
package org.specrunner.expressions;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to sign the evaluator to not be silent on expression evaluation.
*
* @author Thiago Santos
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ FIELD, METHOD })
public @interface Unsilent {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy