blob: a058ca455dfc0ce52c0b6797267d671408e9ae99 [file] [log] [blame]
enum Setup {
NONE,
CONNECTION
}
@Target(value = ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Test {
Setup setup();
}
public class Client {
@Test(setup = Setup.CONNECTION<caret>)
public void run() {
}
}