Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_setId_withUuidFormat (0.26 seconds)

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

            jobLog.setId("first-id");
            assertEquals("first-id", jobLog.getId());
    
            jobLog.setId("second-id");
            assertEquals("second-id", jobLog.getId());
        }
    
        @Test
        public void test_setId_withUuidFormat() {
            final JobLog jobLog = new JobLog();
            final String uuidNoHyphens = "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6";
            jobLog.setId(uuidNoHyphens);
            assertEquals(uuidNoHyphens, jobLog.getId());
        }
    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