Package de.zalando.sprocwrapper.example

Examples of de.zalando.sprocwrapper.example.OptionalLookupType


        List<OptionalLookupType> list = result.list;
        assertNotNull(list);
        assertEquals(1, list.size());

        OptionalLookupType type = list.get(0);
        assertEquals(5, type.a);
        assertEquals(0, type.b);
        assertNotNull(type.c);
        assertFalse(type.c.isPresent());
    }
View Full Code Here

TOP

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

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.