Package de.zalando.sprocwrapper.example

Examples of de.zalando.sprocwrapper.example.ExampleEnum


        Assert.assertEquals(obj.getB(), "b3");
    }

    @Test
    public void testEnumReturnValueU() {
        ExampleEnum e = exampleSProcService.getExampleEnum();
        assertEquals(e, ExampleEnum.ENUM_CONST_2);
    }
View Full Code Here


        assertEquals(e, ExampleEnum.ENUM_CONST_2);
    }

    @Test
    public void testNullEnumReturnValueU() {
        ExampleEnum e = exampleSProcService.getNullExampleEnum();
        assertNull(e);
    }
View Full Code Here

TOP

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

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.