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