Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for logNotificationJob (0.06 seconds)

  1. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

        private LogNotificationJob logNotificationJob;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            logNotificationJob = new LogNotificationJob();
        }
    
        @Test
        public void test_constructor() {
            LogNotificationJob job = new LogNotificationJob();
            assertNotNull(job);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

            assertEquals(0, events.size());
        }
    
        @Test
        public void test_append_excludedLogger_logNotificationJob() {
            final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.job.LogNotificationJob", "should be excluded");
            appender.append(event);
    
            final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll();
            assertEquals(0, events.size());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.7K bytes
    - Click Count (0)
Back to Top