mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
16 lines
244 B
Java
16 lines
244 B
Java
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() {
|
|
}
|
|
} |