Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testParam (0.06 seconds)

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

  1. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

        }
    
        @Test
        public void test_toString_withValidData() {
            // Test toString with normal data
            String name = "testParam";
            String[] values = { "value1", "value2" };
            RequestParameter param = new RequestParameter(name, values);
    
            String expected = "[testParam, [value1, value2]]";
            assertEquals(expected, param.toString());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            inputMap.put("key2", 456);
    
            TestDataStoreParams testParams = new TestDataStoreParams(inputMap);
    
            assertEquals("value1", testParams.get("key1"));
            assertEquals(456, testParams.get("key2"));
    
            // Verify that modifications to original map don't affect created instance
            inputMap.put("key3", "value3");
            assertFalse(testParams.containsKey("key3"));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
Back to Top