Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/opensearch/config/exentity/JobLogTest.java

            final JobLog jobLog = new JobLog();
            jobLog.setId("pre-generated-id-123");
            assertEquals("pre-generated-id-123", jobLog.getId());
        }
    
        @Test
        public void test_setId_overwriteExisting() {
            final JobLog jobLog = new JobLog();
            jobLog.setId("first-id");
            assertEquals("first-id", jobLog.getId());
    
            jobLog.setId("second-id");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 3.7K bytes
    - Click Count (0)
Back to Top