Examples of LookupType


Examples of de.zalando.sprocwrapper.example.LookupType

        assertNull(e);
    }

    @Test
    public void testTypeLookupBug() {
        LookupType t = exampleSProcService.getValueForTypeLookup();
        assertNotNull(t);
        assertEquals(1, t.a);
        assertEquals(2, t.b);
    }
View Full Code Here

Examples of de.zalando.sprocwrapper.example.LookupType

    public void testTypeLookupBugWithList() {
        List<LookupType> t = exampleSProcService.getValueForTypeLookupList();
        assertNotNull(t);
        assertEquals(1, t.size());

        LookupType entry = t.get(0);
        assertEquals(1, entry.a);
        assertEquals(2, entry.b);
    }
View Full Code Here

Examples of de.zalando.sprocwrapper.example.LookupType

    }

    @Test
    public void testDatabaseTypeWithoutName() {

        LookupType type = new LookupType();
        type.a = 1;
        type.b = 2;

        List<LookupType> input = new ArrayList<>(1);
        input.add(type);
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.