blob: 5f9e8cd6b2f7d7be8261434822fba1ff8141b239 [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.CO<caret>)
public void run() {
}
}