File size: 677 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package net.minecraft.gametest.framework;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface GameTest {
    int timeoutTicks() default 100;

    String batch() default "defaultBatch";

    boolean skyAccess() default false;

    int rotationSteps() default 0;

    boolean required() default true;

    boolean manualOnly() default false;

    String template() default "";

    long setupTicks() default 0L;

    int attempts() default 1;

    int requiredSuccesses() default 1;
}