Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_methodChaining (0.14 sec)

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

            } catch (JobProcessingException e) {
                assertEquals("Specific job error", e.getMessage());
            }
        }
    
        // Test method chaining
        public void test_methodChaining() {
            CrawlJob result = crawlJob.namespace("test")
                    .documentExpires(10)
                    .webConfigIds(new String[] { "web1" })
                    .fileConfigIds(new String[] { "file1" })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            assertTrue(messages instanceof FessLabels);
            assertTrue(messages instanceof org.lastaflute.core.message.UserMessages);
        }
    
        // Test method chaining
        public void test_methodChaining() {
            String property1 = "prop1";
            String property2 = "prop2";
            String property3 = "prop3";
    
            FessMessages result =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top