summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/reflectionObject_constructor_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/reflection/tests/reflectionObject_constructor_basic.phpt')
-rw-r--r--ext/reflection/tests/reflectionObject_constructor_basic.phpt28
1 files changed, 0 insertions, 28 deletions
diff --git a/ext/reflection/tests/reflectionObject_constructor_basic.phpt b/ext/reflection/tests/reflectionObject_constructor_basic.phpt
deleted file mode 100644
index fcad71b63d..0000000000
--- a/ext/reflection/tests/reflectionObject_constructor_basic.phpt
+++ /dev/null
@@ -1,28 +0,0 @@
---TEST--
-ReflectionObject::__construct - basic function test
---FILE--
-<?php
-$r1 = new ReflectionObject(new stdClass);
-var_dump($r1);
-
-class C { }
-$myInstance = new C;
-$r2 = new ReflectionObject($myInstance);
-var_dump($r2);
-
-$r3 = new ReflectionObject($r2);
-var_dump($r3);
-?>
---EXPECTF--
-object(ReflectionObject)#%d (1) {
- [u"name"]=>
- unicode(8) "stdClass"
-}
-object(ReflectionObject)#%d (1) {
- [u"name"]=>
- unicode(1) "C"
-}
-object(ReflectionObject)#%d (1) {
- [u"name"]=>
- unicode(16) "ReflectionObject"
-}