(String mainClass)
| 32 | private static final String DIR = "exception"; |
| 33 | |
| 34 | @ParameterizedTest |
| 35 | @ValueSource(strings = { |
| 36 | "ExceptionCircle", |
| 37 | "ExceptionCircleAndRecursion", |
| 38 | "ExceptionNoneCaught", |
| 39 | "ExceptionTreeAndRecursion", |
| 40 | }) |
| 41 | void test(String mainClass) { |
| 42 | Tests.testPTA(DIR, mainClass); |
| 43 | } |
| 44 | |
| 45 | @Test |
| 46 | void testExceptionFromClinit() { |