Package org.apache.axis.types

Examples of org.apache.axis.types.NegativeInteger


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


                throw e;
            }
        }
       
        // Test xsd:negativeInteger
        NegativeInteger niInput = new NegativeInteger("-12345678901234567890");
        try {
            output = binding.echoNegativeInteger(niInput);
            verify("echoNegativeInteger", niInput, output);
        } catch (Exception e) {
            if (!testMode) {
View Full Code Here

TOP

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

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.