1 package test.jason; 2 3 import org.testng.annotations.Test; 4 5 public class MainBase { 6 7 @Test(description = "This test is never run but prevents AfterClass") checkReportsExist()8 public void checkReportsExist() { 9 } 10 } 11