Package de.zalando.sprocwrapper.example

Examples of de.zalando.sprocwrapper.example.ExampleDomainObjectWithMap


        assertNull(result);

        result = exampleSProcService.createOrUpdateMultipleObjectsWithMap(new ArrayList<ExampleDomainObjectWithMap>());
        assertNull(result);

        final ExampleDomainObjectWithMap obj = new ExampleDomainObjectWithMap("a", null);
        final List<ExampleDomainObjectWithMap> list = new ArrayList<ExampleDomainObjectWithMap>();
        list.add(obj);
        list.add(new ExampleDomainObjectWithMap("c", new HashMap<String, String>()));
        list.get(1).b.put("key", "val");

        result = exampleSProcService.createOrUpdateMultipleObjectsWithMap(list);
        assertEquals("<c_key_val>", result);
View Full Code Here

TOP

Related Classes of de.zalando.sprocwrapper.example.ExampleDomainObjectWithMap

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.