summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/simplexml/tests/010.phpt47
1 files changed, 47 insertions, 0 deletions
diff --git a/ext/simplexml/tests/010.phpt b/ext/simplexml/tests/010.phpt
new file mode 100644
index 0000000000..628c945098
--- /dev/null
+++ b/ext/simplexml/tests/010.phpt
@@ -0,0 +1,47 @@
+--TEST--
+SimpleXML: Simple Inheritance
+--SKIPIF--
+<?php if (!extension_loaded("simplexml")) print "skip"; ?>
+--FILE--
+<?php
+
+class simplexml_inherited extends simplexml_element
+{
+}
+
+$sxe = simplexml_load_file(dirname(__FILE__).'/sxe.xml', 'simplexml_inherited');
+
+print_r($sxe);
+
+echo "---Done---\n";
+
+?>
+--EXPECT--
+simplexml_inherited Object
+(
+ [elem1] => simplexml_inherited Object
+ (
+ [comment] => simplexml_inherited Object
+ (
+ )
+
+ [elem2] => simplexml_inherited Object
+ (
+ [elem3] => simplexml_inherited Object
+ (
+ [elem4] => simplexml_inherited Object
+ (
+ [test] => simplexml_inherited Object
+ (
+ )
+
+ )
+
+ )
+
+ )
+
+ )
+
+)
+---Done---