Package org.objectweb.type_test.doc

Examples of org.objectweb.type_test.doc.TestByteResponse


        byte arg3 = 1;
        wrapper3.setX(arg3);
        WrapperHelper.getWrappedPart("x", wrapper3, Byte.class);
        assertEquals(arg3, wrapper3.getX());

        TestByteResponse wrapper4 = new TestByteResponse();
        byte arg4 = 1;
        wrapper4.setReturn(arg4);
        WrapperHelper.getWrappedPart("return", wrapper4, Byte.class);
        assertEquals(arg4, wrapper4.getReturn());       
    }
View Full Code Here

TOP

Related Classes of org.objectweb.type_test.doc.TestByteResponse

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.