- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_newInstance (0.13 sec)
-
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
dataStoreParams.putAll(emptyMap); assertEquals("existingValue", dataStoreParams.get("existingKey")); } // Test newInstance public void test_newInstance() { dataStoreParams.put("key1", "value1"); dataStoreParams.put("key2", 123); DataStoreParams newParams = dataStoreParams.newInstance(); assertNotNull(newParams);
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/core/beans/impl/BeanDescImplTest.java
assertThat(beanDesc.hasPropertyDesc("hhh"), is(not(true))); assertThat(beanDesc.hasPropertyDesc("iii"), is(not(true))); } /** * @throws Exception */ @Test public void testNewInstance() throws Exception { final BeanDesc beanDesc = new BeanDescImpl(Integer.class); assertThat((Integer) beanDesc.newInstance(10), is(10)); assertThat((Integer) beanDesc.newInstance("10"), is(10)); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0)