Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testJobExecutor (0.27 sec)

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

                assertNotNull(e);
            }
        }
    
        public void test_multipleJobExecutors() {
            // Test multiple JobExecutor instances
            JobExecutor executor1 = new TestJobExecutor();
            JobExecutor executor2 = new TestJobExecutor();
    
            AtomicInteger counter1 = new AtomicInteger(0);
            AtomicInteger counter2 = new AtomicInteger(0);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            assertTrue(ComponentUtil.hasIngestFactory());
        }
    
        public void test_getJobExecutor_withSuffix() {
            try {
                ComponentUtil.getJobExecutor("testJobExecutor");
                fail("Should throw exception");
            } catch (Exception e) {
                // Expected
            }
        }
    
        public void test_getJobExecutor_withoutSuffix() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top