summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2004-12-10 01:03:05 +0000
committerSVN Migration <svn@php.net>2004-12-10 01:03:05 +0000
commita4b6eb9b18af736c45ec74284aa8f3e7579bbd2f (patch)
treeee742431b8c615d409dd5923855b903a3e27501b /ext
parentfcde3b066e57a9d4ba84a450006de289ba93fe31 (diff)
downloadphp-git-php-5.0.3RC2.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_0_3RC2'.php-5.0.3RC2
Diffstat (limited to 'ext')
-rwxr-xr-xext/reflection/tests/003.phpt31
1 files changed, 0 insertions, 31 deletions
diff --git a/ext/reflection/tests/003.phpt b/ext/reflection/tests/003.phpt
deleted file mode 100755
index 6603892559..0000000000
--- a/ext/reflection/tests/003.phpt
+++ /dev/null
@@ -1,31 +0,0 @@
---TEST--
-invoke() with base class method
---FILE--
-<?php
-
-class Foo
-{
- function Test()
- {
- echo __METHOD__ . "\n";
- }
-}
-
-class Bar extends Foo
-{
- function Test()
- {
- echo __METHOD__ . "\n";
- }
-}
-
-$o = new Bar;
-$r = new ReflectionMethod('Foo','Test');
-
-$r->invoke($o);
-
-?>
-===DONE===
---EXPECT--
-Foo::Test
-===DONE===