1 package test.configuration; 2 3 import org.testng.Assert; 4 import org.testng.annotations.BeforeMethod; 5 import org.testng.annotations.Test; 6 7 @Test(groups = { "group1" }) 8 public class ConfigurationInheritGroupsSampleTest { 9 private boolean m_ok = false; 10 11 @BeforeMethod setUp()12 public void setUp() { 13 m_ok = true; 14 } 15 test1()16 public void test1() { 17 Assert.assertTrue(m_ok); 18 } 19 ppp(String s)20 private void ppp(String s) { 21 System.out.println("[ConfigurationInheritGroupsSampleTest] " + s); 22 } 23 } 24