01: package test.configuration;
02:
03: import org.testng.Assert;
04:
05: /**
06: * @testng.test groups = "group1"
07: */
08: public class ConfigurationInheritGroupsSampleTest {
09: private boolean m_ok = false;
10:
11: /**
12: * @testng.before-method
13: */
14: public void setUp() {
15: m_ok = true;
16: }
17:
18: public void test1() {
19: Assert.assertTrue(m_ok);
20: }
21:
22: private void ppp(String s) {
23: System.out.println("[ConfigurationInheritGroupsSampleTest] "
24: + s);
25: }
26: }
|