Lines Matching refs:test

26 …echo $xml->children("http://schemas.xmlsoap.org/soap/envelope/")->Body->children("http://test-uri"…
39 $soap = new LocalSoapClient(NULL, array("uri"=>"http://test-uri", "location"=>"test://"));
41 function test($type, $num) {
53 //test(XSD_BYTE, -129);
54 test(XSD_BYTE, -128);
55 test(XSD_BYTE, 127);
56 //test(XSD_BYTE, 128);
59 //test(XSD_SHORT, -32769);
60 test(XSD_SHORT, -32768);
61 test(XSD_SHORT, 32767);
62 //test(XSD_SHORT, 32768);
65 //test(XSD_INT, -2147483649);
66 test(XSD_INT, -2147483648);
67 test(XSD_INT, 2147483647);
68 //test(XSD_INT, 2147483648);
71 //test(XSD_LONG, -9223372036854775809);
72 test(XSD_LONG, -9223372036854775808);
73 test(XSD_LONG, 9223372036854775807);
74 //test(XSD_LONG, 9223372036854775808);
77 //test(XSD_UNSIGNEDBYTE, -1);
78 test(XSD_UNSIGNEDBYTE, 0);
79 test(XSD_UNSIGNEDBYTE, 255);
80 //test(XSD_UNSIGNEDBYTE, 256);
83 //test(XSD_UNSIGNEDSHORT, -1);
84 test(XSD_UNSIGNEDSHORT, 0);
85 test(XSD_UNSIGNEDSHORT, 65535);
86 //test(XSD_UNSIGNEDSHORT, 65536);
89 //test(XSD_UNSIGNEDINT, -1);
90 test(XSD_UNSIGNEDINT, 0);
91 test(XSD_UNSIGNEDINT, 4294967295);
92 //test(XSD_UNSIGNEDINT, 4294967296);
95 //test(XSD_UNSIGNEDLONG, -1);
96 test(XSD_UNSIGNEDLONG, 0);
97 test(XSD_UNSIGNEDLONG, 18446744073709551615);
98 //test(XSD_UNSIGNEDLONG, 18446744073709551616);
101 test(XSD_NEGATIVEINTEGER, -18446744073709551616);
102 test(XSD_NEGATIVEINTEGER, -1);
103 //test(XSD_NEGATIVEINTEGER, 0);
106 test(XSD_NONPOSITIVEINTEGER, -18446744073709551616);
107 test(XSD_NONPOSITIVEINTEGER, 0);
108 //test(XSD_NONPOSITIVEINTEGER, 1);
111 //test(XSD_NONNEGATIVEINTEGER, -1);
112 test(XSD_NONNEGATIVEINTEGER, 0);
113 test(XSD_NONNEGATIVEINTEGER, 18446744073709551616);
116 //test(XSD_POSITIVEINTEGER, 0);
117 test(XSD_POSITIVEINTEGER, 1);
118 test(XSD_POSITIVEINTEGER, 18446744073709551616);
121 test(XSD_INTEGER, -18446744073709551616);
122 test(XSD_INTEGER, 18446744073709551616);
125 test(XSD_LONG, 2147483647);
126 test(XSD_LONG, 2147483648);
127 test(XSD_LONG, 4294967296);
128 test(XSD_LONG, 8589934592);
129 test(XSD_LONG, 17179869184);
132 test(XSD_UNSIGNEDLONG, 2147483647);
133 test(XSD_UNSIGNEDLONG, 2147483648);
134 test(XSD_UNSIGNEDLONG, 4294967296);
135 test(XSD_UNSIGNEDLONG, 8589934592);
136 test(XSD_UNSIGNEDLONG, 17179869184);