
org.togglz.junit.vary.Variations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of togglz-junit Show documentation
Show all versions of togglz-junit Show documentation
Togglz - JUnit integration
package org.togglz.junit.vary;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is used if a test class is executed with {@link FeatureVariations}. The method annotated with this annotation
* must be public static and must return a {@link VariationSetBuilder}.
*
* @see FeatureVariations
*
* @author Christian Kaltepoth
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Variations {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy