From c0b62ca36d5bb8a34a40dfc7c18c7df64babe29d Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 23 Sep 2004 18:38:34 +0000 Subject: [PATCH] Add new test --- ext/reflection/tests/bug30209.phpt | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 ext/reflection/tests/bug30209.phpt 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=== -- 2.50.1