Package org.rhq.core.domain.configuration

Examples of org.rhq.core.domain.configuration.PropertyMap.containsKey()


        List<Map<String, Object>> value = (List<Map<String, Object>>) additionalProperties.get("value");
        Assert.assertEquals(value.size(), 3);

        index = 1;
        for (Map<String, Object> map : value) {
            Assert.assertTrue(map.containsKey("test" + index));
            index++;
            Assert.assertTrue(map.containsValue("test" + index));
            index++;

            Assert.assertEquals(map.size(), 1);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.