Examples of ExampleDomainObjectWithSimpleTransformer


Examples of de.zalando.sprocwrapper.example.ExampleDomainObjectWithSimpleTransformer

    @Test
    public void testSimpleTransformer() throws SQLException {

        // test complex result
        final ExampleDomainObjectWithSimpleTransformer transformed = exampleSProcService.testSimpleTransformer(
                new ExampleDomainObjectWithSimpleTransformer("123", "hallo"));

        assertEquals("123", transformed.getA());
        assertEquals("hallo", transformed.getB());
    }
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.