From 6aed779dc83e1a4799b7fc2a2f13d0901c62d03d Mon Sep 17 00:00:00 2001 From: SVN Migration Date: Thu, 26 Aug 2004 22:24:49 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. --- ext/mysqli/tests/061.phpt | 39 ++++++++++++++++++++++++++++++ ext/reflection/tests/bug29828.phpt | 35 +++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 ext/mysqli/tests/061.phpt create mode 100755 ext/reflection/tests/bug29828.phpt diff --git a/ext/mysqli/tests/061.phpt b/ext/mysqli/tests/061.phpt new file mode 100644 index 0000000000..438f4a203a --- /dev/null +++ b/ext/mysqli/tests/061.phpt @@ -0,0 +1,39 @@ +--TEST-- +local infile handler +--FILE-- + +--EXPECT-- +foo-bar +rab-oof diff --git a/ext/reflection/tests/bug29828.phpt b/ext/reflection/tests/bug29828.phpt new file mode 100755 index 0000000000..69b627079f --- /dev/null +++ b/ext/reflection/tests/bug29828.phpt @@ -0,0 +1,35 @@ +--TEST-- +Bug #29828 (Interfaces no longer work) +--FILE-- +getMethods())); +var_dump($r->getMethod('bla')->isConstructor()); +var_dump($r->getMethod('bla')->isAbstract()); + +$o=new BlaMore; +$o->bla(); + +?> +===DONE=== +--EXPECT-- +int(1) +bool(false) +bool(false) +Hello +===DONE=== -- 2.50.1