From: Marcus Boerger Date: Thu, 23 Sep 2004 18:38:34 +0000 (+0000) Subject: Add new test X-Git-Tag: PRE_NEW_VM_GEN_PATCH~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c0b62ca36d5bb8a34a40dfc7c18c7df64babe29d;p=php Add new test --- diff --git a/ext/reflection/tests/bug30209.phpt b/ext/reflection/tests/bug30209.phpt new file mode 100755 index 0000000000..8afb651e78 --- /dev/null +++ b/ext/reflection/tests/bug30209.phpt @@ -0,0 +1,31 @@ +--TEST-- +Bug #30209 () +--FILE-- +name); + $method = $class->getMethod($this->name); + var_dump($this->name); + } + + catch (Exception $e) {} + } +} + +$foo = new Foo; +$foo->testBAR(); +?> +===DONE=== +--EXPECTF-- +string(7) "testBAR" +string(7) "testBAR" +===DONE===