Package org.constretto.internal.provider.helper

Examples of org.constretto.internal.provider.helper.ConfiguredUsingListsAndMaps


        }};
        Map<String, String> expectedMap = new HashMap<String, String>() {{
            put("1", "10");
            put("2", "20");
        }};
        ConfiguredUsingListsAndMaps configuredObject = new ConfiguredUsingListsAndMaps();
        configuration.on(configuredObject);
        assertList(expectedList,configuredObject.arrayFromField);
        assertList(expectedList,configuredObject.arrayFromMethod);
        assertMap(expectedMap,configuredObject.mapFromField);
        assertMap(expectedMap,configuredObject.mapFromMethod);
View Full Code Here

TOP

Related Classes of org.constretto.internal.provider.helper.ConfiguredUsingListsAndMaps

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.