• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.testng109;
2 
3 import org.testng.annotations.BeforeClass;
4 import org.testng.annotations.Test;
5 
6 
7 /**
8  * This class/interface
9  */
10 public class SkippedTestWithExpectedExceptionTest {
11   @BeforeClass
setup()12   public void setup() {
13     throw new RuntimeException("test-exception");
14   }
15 
16   @Test
test1()17   public void test1()
18   {
19 //   empty
20   }
21 
22   @Test(expectedExceptions={OutOfMemoryError.class})
test2()23   public void test2()
24   {
25 //  empty
26   }
27 }
28