package org.jboss.aerogear.arquillian.junit; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marks a {@link MethodRule} to be enriched by Arquillian * * @author <a href="mailto:kpiwko@redhat.com">Karel Piwko</a> * */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD, ElementType.METHOD }) public @interface ArquillianRule { }