()
| 14 | public class PcgenFtlErrorTest |
| 15 | { |
| 16 | @BeforeEach |
| 17 | public void setUp() |
| 18 | { |
| 19 | GracefulExit.registerExitFunction((int status) -> { |
| 20 | assertEquals(1, status, |
| 21 | MessageFormat.format("The PCGen execution returned an unexpected status code: {0}.", status)); |
| 22 | throw new IllegalStateException("The test execution is aborted intentionally."); |
| 23 | }); |
| 24 | } |
| 25 | |
| 26 | @AfterEach |
| 27 | public void tearDown() |
nothing calls this directly
no test coverage detected