Home | History | Annotate | Download | only in v6
      1 package test.v6;
      2 
      3 import org.testng.annotations.AfterSuite;
      4 import org.testng.annotations.AfterTest;
      5 import org.testng.annotations.BeforeSuite;
      6 import org.testng.annotations.BeforeTest;
      7 import org.testng.annotations.Test;
      8 
      9 public class C {
     10 
     11   @BeforeTest
     12   public void beforeTest() {}
     13 
     14   @AfterTest
     15   public void afterTest() {}
     16 
     17   @Test
     18   public void fc1() {}
     19 
     20   @BeforeSuite
     21   public void beforeSuite() {}
     22 
     23   @AfterSuite
     24   public void afterSuite() {}
     25 
     26 }
     27