Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testAddSystemProperty (0.31 sec)

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

            System.setProperty("test.property", "test.value");
            execJob.testAddSystemProperty(cmdList, "test.property", "default", null);
            assertEquals(1, cmdList.size());
            assertEquals("-Dtest.property=test.value", cmdList.get(0));
    
            // Test with append value
            cmdList.clear();
            execJob.testAddSystemProperty(cmdList, "test.property", "default", ":append");
            assertEquals(1, cmdList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top