water.runner.CloudSize Maven / Gradle / Ivy
The newest version!
package water.runner;
import org.junit.Ignore;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Minimal required cloud size for a JUnit test to run on
*/
@Ignore
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface CloudSize {
int value();
}