Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for test_constructor (0.05 seconds)

  1. src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java

            ComponentUtil.getFessConfig().setLogNotificationEnabled(true);
            logNotificationTarget = new LogNotificationTarget();
        }
    
        @Test
        public void test_constructor() {
            LogNotificationTarget target = new LogNotificationTarget();
            assertNotNull(target);
        }
    
        @Test
        public void test_expired_emptyBuffer() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

    public class LogNotificationHelperTest extends UnitFessTestCase {
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
        }
    
        @Test
        public void test_constructor() {
            LogNotificationHelper helper = new LogNotificationHelper();
            assertNotNull(helper);
        }
    
        @Test
        public void test_init_and_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)
  3. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

        @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
        public void test_execute_disabled() {
            TestFessConfig fessConfig = new TestFessConfig();
    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)
Back to Top