summaryrefslogtreecommitdiff
path: root/ext/spl/tests/array_022.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/array_022.phpt')
-rwxr-xr-xext/spl/tests/array_022.phpt72
1 files changed, 0 insertions, 72 deletions
diff --git a/ext/spl/tests/array_022.phpt b/ext/spl/tests/array_022.phpt
deleted file mode 100755
index 9cb2193f10..0000000000
--- a/ext/spl/tests/array_022.phpt
+++ /dev/null
@@ -1,72 +0,0 @@
---TEST--
-SPL: ArrayObject/Iterator and reference to self
---SKIPIF--
-<?php if (!extension_loaded("spl")) print "skip"; ?>
---FILE--
-==ArrayObject===
-<?php
-
-class MyArrayObject extends ArrayObject
-{
- public function __construct()
- {
- parent::__construct($this);
- $this['bar'] = 'baz';
- }
-}
-
-$a = new MyArrayObject;
-
-$b = clone $a;
-$b['baz'] = 'Foo';
-
-var_dump($a);
-var_dump($b);
-
-?>
-==ArrayIterator===
-<?php
-
-class MyArrayIterator extends ArrayIterator
-{
- public function __construct()
- {
- parent::__construct($this);
- $this['bar'] = 'baz';
- }
-}
-
-$a = new MyArrayIterator;
-
-$b = clone $a;
-$b['baz'] = 'Foo';
-
-var_dump($a);
-var_dump($b);
-
-?>
-===DONE===
---EXPECTF--
-==ArrayObject===
-object(MyArrayObject)#%d (1) {
- ["bar"]=>
- string(3) "baz"
-}
-object(MyArrayObject)#%d (2) {
- ["bar"]=>
- string(3) "baz"
- ["baz"]=>
- string(3) "Foo"
-}
-==ArrayIterator===
-object(MyArrayIterator)#%d (1) {
- ["bar"]=>
- string(3) "baz"
-}
-object(MyArrayIterator)#%d (2) {
- ["bar"]=>
- string(3) "baz"
- ["baz"]=>
- string(3) "Foo"
-}
-===DONE===