From c4dd7a1a684490673e25aaf4fabec5df138854c4 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Thu, 14 Mar 2013 05:42:27 +0000 Subject: Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2. --- ext/soap/tests/schema/schema061.phpt | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ext/soap/tests/schema/schema061.phpt (limited to 'ext/soap/tests/schema/schema061.phpt') diff --git a/ext/soap/tests/schema/schema061.phpt b/ext/soap/tests/schema/schema061.phpt new file mode 100644 index 0000000..bbd2aa6 --- /dev/null +++ b/ext/soap/tests/schema/schema061.phpt @@ -0,0 +1,38 @@ +--TEST-- +SOAP XML Schema 61: SOAP 1.2 Multidimensional array (second way, literal encoding) +--SKIPIF-- + +--FILE-- + + + + + + + + + + +EOF; +test_schema($schema,'type="tns:testType"',array(array(123),array(123.5)),'rpc','literal'); +echo "ok"; +?> +--EXPECT-- + +123123 +array(2) { + [0]=> + array(1) { + [0]=> + int(123) + } + [1]=> + array(1) { + [0]=> + int(123) + } +} +ok -- cgit v1.2.1