blob: d81817b08304e60b2be9223c72a8bf17fa4b061d [file] [log] [blame]
package test.testng59;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.Test;
/**
* This class/interface
*/
public class Test1 {
private boolean m_run= false;
@Test
public void test1() {
m_run= true;
}
@AfterClass
public void checkWasRun() {
Assert.assertTrue(m_run, "test1() should have been run according to testng-59.xml");
}
}