• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
startup()11     public void startup() {
12         assertNotNull(null);
13     }
14 
15     @AfterSuite
shutdown()16     public void shutdown() {
17         assertNotNull(null);
18     }
19 }
20