1 package test.jason; 2 3 import org.testng.annotations.AfterClass; 4 import org.testng.annotations.Test; 5 6 public class Main extends MainBase { 7 public static boolean m_passed = false; 8 9 @AfterClass afterClass()10 public void afterClass() { 11 m_passed = true; 12 } 13 14 @Test(description = "This test is run") test1()15 public void test1() throws InterruptedException { 16 } 17 } 18