Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_init_destroy_multipleRounds (0.11 seconds)

  1. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

            LogNotificationHelper helper = new LogNotificationHelper();
            // destroy() without init() should not throw NPE because of null checks
            helper.destroy();
        }
    
        @Test
        public void test_init_destroy_multipleRounds() {
            LogNotificationHelper helper = new LogNotificationHelper();
            helper.init();
            helper.destroy();
            // Second round
            helper.init();
            helper.destroy();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
Back to Top