()
| 21 | public static final ExitInterceptor EMPTY_EXIT_INTERCEPTOR = status -> true; |
| 22 | |
| 23 | @BeforeEach |
| 24 | void setUp() |
| 25 | { |
| 26 | GracefulExit.registerExitFunction(status -> { /* do nothing */ }); |
| 27 | GracefulExit.clearExitInterceptors(); |
| 28 | } |
| 29 | |
| 30 | @Test |
| 31 | void testDefaultExit() |
nothing calls this directly
no test coverage detected