From 8c5a1a03db773e7c155549d037e41cdca130fc72 Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 29 Mar 2002 15:15:16 +0000 Subject: [PATCH] - MFH fixes for these tests. --- .../tests/aggregation/aggregate.lib.php | 65 ------------------- ext/standard/tests/aggregation/aggregate.phpt | 2 +- .../tests/aggregation/aggregate_methods.phpt | 2 +- .../aggregate_methods_by_list.phpt | 2 +- .../aggregate_methods_by_regexp.phpt | 2 +- .../aggregation/aggregate_properties.phpt | 2 +- .../aggregate_properties_by_list.phpt | 2 +- .../aggregate_properties_by_regexp.phpt | 2 +- .../tests/aggregation/aggregation_info.phpt | 2 +- .../tests/aggregation/deaggregate.phpt | 2 +- 10 files changed, 9 insertions(+), 74 deletions(-) delete mode 100644 ext/standard/tests/aggregation/aggregate.lib.php diff --git a/ext/standard/tests/aggregation/aggregate.lib.php b/ext/standard/tests/aggregation/aggregate.lib.php deleted file mode 100644 index 3799285f75..0000000000 --- a/ext/standard/tests/aggregation/aggregate.lib.php +++ /dev/null @@ -1,65 +0,0 @@ - PHP_VERSION); - var $our_prop = '****'; - var $_priv_prop = null; - - function helper() - { - print "just trying to help\n"; - } - - function do_this() - { - print "I'm helping!\n"; - } - - function do_that() - { - print "I'm aggregating!\n"; - } - - function just_another_method() - { - print "yep, that's me\n"; - } - - function _private() - { - print "Don't touch me!\n"; - } - - function __wakeup() - { - } -} - -class mixin { - var $simple_prop = true; - var $mix = true; - - function mix_it() - { - print "mixing\n"; - } -} - -class moby { - function mix_it() - { - print "I'm redundant!\n"; - } -} - -?> diff --git a/ext/standard/tests/aggregation/aggregate.phpt b/ext/standard/tests/aggregation/aggregate.phpt index 82afb16f70..161afcda68 100644 --- a/ext/standard/tests/aggregation/aggregate.phpt +++ b/ext/standard/tests/aggregation/aggregate.phpt @@ -4,7 +4,7 @@ aggregating everything --GET-- --FILE--