Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_args (0.03 seconds)

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

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

            pythonJob.arg("arg2");
            assertEquals(2, pythonJob.argList.size());
            assertEquals("arg2", pythonJob.argList.get(1));
        }
    
        // Test multiple arguments addition
        @Test
        public void test_args() {
            assertTrue(pythonJob.argList.isEmpty());
    
            PythonJob result = pythonJob.args("arg1", "arg2", "arg3");
    
            assertSame(pythonJob, result);
            assertEquals(3, pythonJob.argList.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
Back to Top