- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for intKey (0.03 sec)
-
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
} // Test getAsString with non-String value public void test_getAsStringWithNonStringValue() { dataStoreParams.put("intKey", 123); assertEquals("123", dataStoreParams.getAsString("intKey")); dataStoreParams.put("longKey", 456L); assertEquals("456", dataStoreParams.getAsString("longKey")); dataStoreParams.put("boolKey", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
public void test_get_numericValues() { String intKey = "numeric.int"; String floatKey = "numeric.float"; System.setProperty(Constants.FESS_CONFIG_PREFIX + intKey, "123"); System.setProperty(Constants.FESS_CONFIG_PREFIX + floatKey, "45.67"); try { String intValue = fessConfig.get(intKey); assertEquals("123", intValue);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
public void test_append_integerValue() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> Integer.valueOf(123); monitorTarget.append(buf, "intKey", supplier); assertEquals("\"intKey\":123", buf.toString()); } // Test append method with Long value public void test_append_longValue() { StringBuilder buf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0)