1 package test.testng59; 2 3 import org.testng.Assert; 4 import org.testng.annotations.AfterClass; 5 import org.testng.annotations.Test; 6 7 8 /** 9 * This class/interface 10 */ 11 public class Test1 { 12 private boolean m_run= false; 13 14 @Test test1()15 public void test1() { 16 m_run= true; 17 } 18 19 @AfterClass checkWasRun()20 public void checkWasRun() { 21 Assert.assertTrue(m_run, "test1() should have been run according to testng-59.xml"); 22 } 23 } 24