add tests for E_STRICT that will become E_FATAL in PHP 6

This commit is contained in:
Antony Dovgal 2006-05-31 14:54:52 +00:00
parent 8df40bdb31
commit 8f78a2727b
8 changed files with 192 additions and 0 deletions

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo() {}
}
class test2 extends test {
function foo() {}
}
class test3 extends test {
function foo($arg) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo($arg) {}
}
class test2 extends test {
function foo($arg) {}
}
class test3 extends test {
function foo($arg, $arg2) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo($arg) {}
}
class test2 extends test {
function foo($arg) {}
}
class test3 extends test {
function foo(&$arg) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function &foo() {}
}
class test2 extends test {
function &foo() {}
}
class test3 extends test {
function foo() {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo($arg, $arg2 = NULL) {}
}
class test2 extends test {
function foo($arg, $arg2 = NULL) {}
}
class test3 extends test {
function foo($arg, $arg2) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo($arg, &$arg2 = NULL) {}
}
class test2 extends test {
function foo($arg, &$arg2 = NULL) {}
}
class test3 extends test {
function foo($arg, &$arg2) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo(Test $arg) {}
}
class test2 extends test {
function foo(Test $arg) {}
}
class test3 extends test {
function foo(Test3 $arg) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done

View File

@ -0,0 +1,24 @@
--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function foo(Test $arg) {}
}
class test2 extends test {
function foo(Test $arg) {}
}
class test3 extends test {
function foo($arg) {}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Declaration of test3::foo() should be compatible with that of test::foo() in %s on line %d
Done