01: package test.tmp;
02:
03: import org.testng.annotations.Test;
04:
05: @Test
06: public class StaticInitializerTest {
07:
08: static {
09: foo();
10: }
11:
12: public void testMe() {
13: System.err.println("**** testMe ****");
14: }
15:
16: private static void foo() {
17: throw new RuntimeException("FAILING");
18: }
19: }
|