Examples of ExampleEnum


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

Examples of de.zalando.sprocwrapper.example.ExampleEnum

        assertEquals(e, ExampleEnum.ENUM_CONST_2);
    }

    @Test
    public void testNullEnumReturnValueU() {
        ExampleEnum e = exampleSProcService.getNullExampleEnum();
        assertNull(e);
    }
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.