]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create tag 'php_5_0_3RC1'. php-5.0.3RC1
authorSVN Migration <svn@php.net>
Tue, 30 Nov 2004 01:39:19 +0000 (01:39 +0000)
committerSVN Migration <svn@php.net>
Tue, 30 Nov 2004 01:39:19 +0000 (01:39 +0000)
ext/reflection/tests/003.phpt [deleted file]
tests/lang/bug30862.phpt [deleted file]

diff --git a/ext/reflection/tests/003.phpt b/ext/reflection/tests/003.phpt
deleted file mode 100755 (executable)
index 6603892..0000000
+++ /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===
diff --git a/tests/lang/bug30862.phpt b/tests/lang/bug30862.phpt
deleted file mode 100644 (file)
index 12c95d5..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
---TEST--
-Bug #30862 (Static array with boolean indexes)
---FILE--
-<?php 
-class T {
-       static $a = array(false=>"false", true=>"true");
-}
-print_r(T::$a);
-?>
-----------
-<?php
-define("X",0);
-define("Y",1);
-class T2 {
-       static $a = array(X=>"false", Y=>"true");
-}
-print_r(T2::$a);
-?>
---EXPECT--
-Array
-(
-    [0] => false
-    [1] => true
-)
-----------
-Array
-(
-    [0] => false
-    [1] => true
-)