Home | History | Annotate | Download | only in p1
      1 package test.tmp.p1;
      2 
      3 import static org.testng.AssertJUnit.assertNotNull;
      4 
      5 import org.testng.annotations.AfterSuite;
      6 import org.testng.annotations.BeforeSuite;
      7 
      8 public class ContainerTest {
      9 
     10     @BeforeSuite
     11     public void startup() {
     12         assertNotNull(null);
     13     }
     14 
     15     @AfterSuite
     16     public void shutdown() {
     17         assertNotNull(null);
     18     }
     19 }
     20