Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testCopy_mapToNewMap (0.21 sec)

  1. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

         */
        @Test
        public void testCopy_mapToNewMap() throws Exception {
            final BeanMap src = new BeanMap();
            src.put("aaa", "aaa");
            final Map<String, Object> dest = BeanUtil.copyMapToNewMap(src);
            assertThat(dest.get("aaa"), is((Object) "aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopy_mapToNewMap_specificClass() throws Exception {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 34.5K bytes
    - Viewed (0)
Back to top