Examples of TestInheritanceChild


Examples of de.zalando.sprocwrapper.example.TestInheritanceChild

        assertEquals(2, entry.b);
    }

    @Test
    public void testInheritanceInParameter() throws Exception {
        TestInheritanceChild child = new TestInheritanceChild(1, 5, 7);
        int result = exampleSProcService.testInheritanceFunction(child);
        assertEquals(13, result);
    }
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.