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