From 5b712c890c240e00726c326f782c217773d17967 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Tue, 16 Dec 2003 20:50:20 +0000 Subject: [PATCH] Add a test to check split text content collecting --- ext/simplexml/tests/013.phpt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 ext/simplexml/tests/013.phpt diff --git a/ext/simplexml/tests/013.phpt b/ext/simplexml/tests/013.phpt new file mode 100755 index 0000000000..85700956b6 --- /dev/null +++ b/ext/simplexml/tests/013.phpt @@ -0,0 +1,24 @@ +--TEST-- +SimpleXML and Split text content +--SKIPIF-- + +--FILE-- + +barbar +EOF; + +$sxe = simplexml_load_string($xml); + +var_dump((string)$sxe); + +?> +===DONE=== +--EXPECT-- +string(6) "barbar" +===DONE=== -- 2.50.1