Package org.apache.axis.types

Examples of org.apache.axis.types.UnsignedByte


    /**
     * Run a successful test.  value should be valid.
     */
    private void runPassTest(long value) throws Exception {
        UnsignedByte oUnsignedByte = null;
        try {
            oUnsignedByte = new UnsignedByte(value);
        }
        catch (Exception e) { // catch the validation exception
        }
        assertEquals("unsigned byte not equal" +
                String.valueOf(value), oUnsignedByte.toString(), String.valueOf(value));
    }
View Full Code Here


                throw e;
            }
        }

        // Test xsd:unsignedByte
        UnsignedByte ubInput = new UnsignedByte(103);
        try {
            output = binding.echoUnsignedByte(ubInput);
            verify("echoUnsignedByte", ubInput, output);
        } catch (Exception e) {
            if (!testMode) {
View Full Code Here

TOP

Related Classes of org.apache.axis.types.UnsignedByte

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.