01: package test.enabled;
02:
03: /**
04: * @testng.test timeOut="10000" enabled=false
05: */
06: public class EnabledTest {
07:
08: /**
09: * @testng.before-method
10: */
11: public void setup() throws InterruptedException {
12: ppp("SETUP");
13: }
14:
15: public void test1() {
16: ppp("TEST1");
17: }
18:
19: private void ppp(String s) {
20: System.out.println("[EnabledTest] " + s);
21: }
22: }
|