package com.googlecode.zohhak.helper; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import com.googlecode.zohhak.api.Configure; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Configure(configuration=ConstantConfiguration.class) public @interface CustomTest { String[] value(); }