01: package test.testng109;
02:
03: import org.testng.annotations.BeforeClass;
04: import org.testng.annotations.Test;
05:
06: /**
07: * This class/interface
08: */
09: public class SkippedTestWithExpectedException {
10: @BeforeClass
11: public void setup() {
12: throw new RuntimeException("test-exception");
13: }
14:
15: @Test
16: public void test1() {
17: // empty
18: }
19:
20: @Test(expectedExceptions={OutOfMemoryError.class})
21: public void test2() {
22: // empty
23: }
24: }
|