summaryrefslogtreecommitdiff
path: root/ext/spl/tests/sxe_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/sxe_005.phpt')
-rwxr-xr-xext/spl/tests/sxe_005.phpt46
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/spl/tests/sxe_005.phpt b/ext/spl/tests/sxe_005.phpt
deleted file mode 100755
index 2efd0a6bee..0000000000
--- a/ext/spl/tests/sxe_005.phpt
+++ /dev/null
@@ -1,46 +0,0 @@
---TEST--
-SPL: SimpleXMLIterator and getChildren()
---SKIPIF--
-<?php
-if (!extension_loaded("spl")) print "skip";
-if (!extension_loaded('simplexml')) print 'skip';
-if (!extension_loaded("libxml")) print "skip LibXML not present";
-if (!class_exists('RecursiveIteratorIterator')) print 'skip RecursiveIteratorIterator not available';
-?>
---FILE--
-<?php
-
-$xml =<<<EOF
-<?xml version='1.0'?>
-<sxe>
- <elem1/>
- <elem2/>
- <elem2/>
-</sxe>
-EOF;
-
-class SXETest extends SimpleXMLIterator
-{
- function count()
- {
- echo __METHOD__ . "\n";
- return parent::count();
- }
-}
-
-$sxe = new SXETest($xml);
-
-var_dump(count($sxe));
-var_dump(count($sxe->elem1));
-var_dump(count($sxe->elem2));
-
-?>
-===DONE===
---EXPECT--
-SXETest::count
-int(3)
-SXETest::count
-int(1)
-SXETest::count
-int(2)
-===DONE===