Lines Matching refs:test

27 …echo $xml->children("http://schemas.xmlsoap.org/soap/envelope/")->Body->children("http://test-uri"…
40 $soap = new LocalSoapClient(NULL, array("uri"=>"http://test-uri", "location"=>"test://"));
42 function test($type, $num) {
54 //test(XSD_BYTE, -129);
55 test(XSD_BYTE, -128);
56 test(XSD_BYTE, 127);
57 //test(XSD_BYTE, 128);
60 //test(XSD_SHORT, -32769);
61 test(XSD_SHORT, -32768);
62 test(XSD_SHORT, 32767);
63 //test(XSD_SHORT, 32768);
66 //test(XSD_INT, -2147483649);
67 test(XSD_INT, -2147483648);
68 test(XSD_INT, 2147483647);
69 //test(XSD_INT, 2147483648);
72 //test(XSD_LONG, -9223372036854775809);
73 test(XSD_LONG, -9223372036854775808);
74 test(XSD_LONG, 9223372036854775807);
75 //test(XSD_LONG, 9223372036854775808);
78 //test(XSD_UNSIGNEDBYTE, -1);
79 test(XSD_UNSIGNEDBYTE, 0);
80 test(XSD_UNSIGNEDBYTE, 255);
81 //test(XSD_UNSIGNEDBYTE, 256);
84 //test(XSD_UNSIGNEDSHORT, -1);
85 test(XSD_UNSIGNEDSHORT, 0);
86 test(XSD_UNSIGNEDSHORT, 65535);
87 //test(XSD_UNSIGNEDSHORT, 65536);
90 //test(XSD_UNSIGNEDINT, -1);
91 test(XSD_UNSIGNEDINT, 0);
92 test(XSD_UNSIGNEDINT, 4294967295);
93 //test(XSD_UNSIGNEDINT, 4294967296);
96 //test(XSD_UNSIGNEDLONG, -1);
97 test(XSD_UNSIGNEDLONG, 0);
98 test(XSD_UNSIGNEDLONG, 18446744073709551615);
99 //test(XSD_UNSIGNEDLONG, 18446744073709551616);
102 test(XSD_NEGATIVEINTEGER, -18446744073709551616);
103 test(XSD_NEGATIVEINTEGER, -1);
104 //test(XSD_NEGATIVEINTEGER, 0);
107 test(XSD_NONPOSITIVEINTEGER, -18446744073709551616);
108 test(XSD_NONPOSITIVEINTEGER, 0);
109 //test(XSD_NONPOSITIVEINTEGER, 1);
112 //test(XSD_NONNEGATIVEINTEGER, -1);
113 test(XSD_NONNEGATIVEINTEGER, 0);
114 test(XSD_NONNEGATIVEINTEGER, 18446744073709551616);
117 //test(XSD_POSITIVEINTEGER, 0);
118 test(XSD_POSITIVEINTEGER, 1);
119 test(XSD_POSITIVEINTEGER, 18446744073709551616);
122 test(XSD_INTEGER, -18446744073709551616);
123 test(XSD_INTEGER, 18446744073709551616);
126 test(XSD_LONG, 2147483647);
127 test(XSD_LONG, 2147483648);
128 test(XSD_LONG, 4294967296);
129 test(XSD_LONG, 8589934592);
130 test(XSD_LONG, 17179869184);
133 test(XSD_UNSIGNEDLONG, 2147483647);
134 test(XSD_UNSIGNEDLONG, 2147483648);
135 test(XSD_UNSIGNEDLONG, 4294967296);
136 test(XSD_UNSIGNEDLONG, 8589934592);
137 test(XSD_UNSIGNEDLONG, 17179869184);