@AfterMethod
 public void afterMethod(ITestResult result) {
   super.afterMethod(result);
 }
 @AfterTest
 public void afterTest() {
   super.afterTest();
 }
 @BeforeMethod
 public void beforeMethod(Method method) {
   super.beforeMethod(method);
 }
 @BeforeTest
 public void beforeTest() throws Exception {
   super.beforeTest();
 }