Lines Matching refs:test
25 …echo $xml->children("http://schemas.xmlsoap.org/soap/envelope/")->Body->children("http://test-uri"…
38 $soap = new LocalSoapClient(NULL, array("uri"=>"http://test-uri", "location"=>"test://"));
40 function test($type, $num) {
52 //test(XSD_BYTE, -129);
53 test(XSD_BYTE, -128);
54 test(XSD_BYTE, 127);
55 //test(XSD_BYTE, 128);
58 //test(XSD_SHORT, -32769);
59 test(XSD_SHORT, -32768);
60 test(XSD_SHORT, 32767);
61 //test(XSD_SHORT, 32768);
64 //test(XSD_INT, -2147483649);
65 test(XSD_INT, -2147483648);
66 test(XSD_INT, 2147483647);
67 //test(XSD_INT, 2147483648);
70 //test(XSD_LONG, -9223372036854775809);
71 test(XSD_LONG, -9223372036854775808);
72 test(XSD_LONG, 9223372036854775807);
73 //test(XSD_LONG, 9223372036854775808);
76 //test(XSD_UNSIGNEDBYTE, -1);
77 test(XSD_UNSIGNEDBYTE, 0);
78 test(XSD_UNSIGNEDBYTE, 255);
79 //test(XSD_UNSIGNEDBYTE, 256);
82 //test(XSD_UNSIGNEDSHORT, -1);
83 test(XSD_UNSIGNEDSHORT, 0);
84 test(XSD_UNSIGNEDSHORT, 65535);
85 //test(XSD_UNSIGNEDSHORT, 65536);
88 //test(XSD_UNSIGNEDINT, -1);
89 test(XSD_UNSIGNEDINT, 0);
90 test(XSD_UNSIGNEDINT, 4294967295);
91 //test(XSD_UNSIGNEDINT, 4294967296);
94 //test(XSD_UNSIGNEDLONG, -1);
95 test(XSD_UNSIGNEDLONG, 0);
96 test(XSD_UNSIGNEDLONG, 18446744073709551615);
97 //test(XSD_UNSIGNEDLONG, 18446744073709551616);
100 test(XSD_NEGATIVEINTEGER, -18446744073709551616);
101 test(XSD_NEGATIVEINTEGER, -1);
102 //test(XSD_NEGATIVEINTEGER, 0);
105 test(XSD_NONPOSITIVEINTEGER, -18446744073709551616);
106 test(XSD_NONPOSITIVEINTEGER, 0);
107 //test(XSD_NONPOSITIVEINTEGER, 1);
110 //test(XSD_NONNEGATIVEINTEGER, -1);
111 test(XSD_NONNEGATIVEINTEGER, 0);
112 test(XSD_NONNEGATIVEINTEGER, 18446744073709551616);
115 //test(XSD_POSITIVEINTEGER, 0);
116 test(XSD_POSITIVEINTEGER, 1);
117 test(XSD_POSITIVEINTEGER, 18446744073709551616);
120 test(XSD_INTEGER, -18446744073709551616);
121 test(XSD_INTEGER, 18446744073709551616);
124 test(XSD_LONG, 2147483647);
125 test(XSD_LONG, 2147483648);
126 test(XSD_LONG, 4294967296);
127 test(XSD_LONG, 8589934592);
128 test(XSD_LONG, 17179869184);
131 test(XSD_UNSIGNEDLONG, 2147483647);
132 test(XSD_UNSIGNEDLONG, 2147483648);
133 test(XSD_UNSIGNEDLONG, 4294967296);
134 test(XSD_UNSIGNEDLONG, 8589934592);
135 test(XSD_UNSIGNEDLONG, 17179869184);