- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_shutdown_withoutListener (0.09 sec)
-
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
// Call shutdown scriptExecutor.shutdown(); // Verify listener was called assertTrue(listener.wasShutdownCalled()); } public void test_shutdown_withoutListener() { // Call shutdown without setting listener try { scriptExecutor.shutdown(); fail("Expected NullPointerException"); } catch (NullPointerException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/JobExecutorTest.java
} }); assertFalse(shutdownCalled.get()); jobExecutor.shutdown(); assertTrue(shutdownCalled.get()); } public void test_shutdown_withoutListener() { // Test shutdown without listener should throw NullPointerException try { jobExecutor.shutdown(); fail("Expected NullPointerException");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0)