summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/reflectionObject_constructor_basic.phpt
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2009-04-08 16:08:58 +0000
committerSebastian Bergmann <sebastian@php.net>2009-04-08 16:08:58 +0000
commitfa587effb79a043bd32cd93800a912907d7d346d (patch)
tree866309a20bab843ed0fb63c63cd93b3c5f9e54d4 /ext/reflection/tests/reflectionObject_constructor_basic.phpt
parentbab2569a8a8ebe8891ee1ab75c3f3efef745b580 (diff)
downloadphp-git-fa587effb79a043bd32cd93800a912907d7d346d.tar.gz
Rename reflection*.phpt to Reflection*.phpt for consistency.
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"
-}