diff options
author | Marcus Boerger <helly@php.net> | 2006-05-21 11:23:35 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-05-21 11:23:35 +0000 |
commit | 426b40fc77a5af3c5e669e489628e92ad4d8798f (patch) | |
tree | bd8acf74059723e21c369e34c0ec82a8a343c0f0 /tests | |
parent | 50ae26c1470c0b294cf8a1178887428c2c567bc1 (diff) | |
download | php-git-426b40fc77a5af3c5e669e489628e92ad4d8798f.tar.gz |
- Improved error messages
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/classes/interfaces_003.phpt | 2 | ||||
-rw-r--r-- | tests/classes/type_hinting_001.phpt | 2 | ||||
-rwxr-xr-x | tests/classes/type_hinting_003.phpt | 2 | ||||
-rw-r--r-- | tests/lang/bug24658.phpt | 2 | ||||
-rw-r--r-- | tests/lang/catchable_error_001.phpt | 2 | ||||
-rw-r--r-- | tests/lang/catchable_error_002.phpt | 2 | ||||
-rw-r--r-- | tests/lang/type_hints_001.phpt | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/classes/interfaces_003.phpt b/tests/classes/interfaces_003.phpt index 2c4c7e7c94..7bdca933e7 100755 --- a/tests/classes/interfaces_003.phpt +++ b/tests/classes/interfaces_003.phpt @@ -23,4 +23,4 @@ $obj = new MyTestClass; ===DONE=== --EXPECTF-- -Catchable fatal error: Argument 1 passed to MyTestClass::__construct() must be an object of class MyObject, called in %sinterfaces_003.php on line %d +Catchable fatal error: Argument 1 passed to MyTestClass::__construct() must be an object of class MyObject, none given, called in %sinterfaces_003.php on line %d diff --git a/tests/classes/type_hinting_001.phpt b/tests/classes/type_hinting_001.phpt index 17cf57e344..f55dd53bf4 100644 --- a/tests/classes/type_hinting_001.phpt +++ b/tests/classes/type_hinting_001.phpt @@ -35,4 +35,4 @@ $a->b($b); ?> --EXPECTF-- -Catchable fatal error: Argument 1 passed to FooBar::a() must implement interface Foo, called in %s on line 27 and defined in %s on line 12 +Catchable fatal error: Argument 1 passed to FooBar::a() must implement interface Foo, instance of Blort given, called in %s on line 27 and defined in %s on line 12 diff --git a/tests/classes/type_hinting_003.phpt b/tests/classes/type_hinting_003.phpt index ea01fc2dcb..431d66eabc 100755 --- a/tests/classes/type_hinting_003.phpt +++ b/tests/classes/type_hinting_003.phpt @@ -57,4 +57,4 @@ array(1) { int(25) } -Catchable fatal error: Argument 1 passed to Test::f1() must be an array, called in %stype_hinting_003.php on line %d and defined in %stype_hinting_003.php on line %d +Catchable fatal error: Argument 1 passed to Test::f1() must be an array, integer given, called in %stype_hinting_003.php on line %d and defined in %stype_hinting_003.php on line %d diff --git a/tests/lang/bug24658.phpt b/tests/lang/bug24658.phpt index 5f3b324b61..5a5782a3d6 100644 --- a/tests/lang/bug24658.phpt +++ b/tests/lang/bug24658.phpt @@ -53,4 +53,4 @@ int(2) object(foo)#%d (0) { } -Catchable fatal error: Argument 1 passed to typehint() must be an object of class foo in %s on line %d +Catchable fatal error: Argument 1 passed to typehint() must be an object of class foo, integer given in %s on line %d diff --git a/tests/lang/catchable_error_001.phpt b/tests/lang/catchable_error_001.phpt index d0161286d0..f6bbdd976d 100644 --- a/tests/lang/catchable_error_001.phpt +++ b/tests/lang/catchable_error_001.phpt @@ -19,4 +19,4 @@ Catchable fatal error [1] echo "ALIVE!\n"; ?> --EXPECTF-- -Catchable fatal error: Argument 1 passed to blah() must be an instance of Foo, called in %scatchable_error_001.php on line 15 and defined in %scatchable_error_001.php on line 5 +Catchable fatal error: Argument 1 passed to blah() must be an instance of Foo, instance of stdClass given, called in %scatchable_error_001.php on line 15 and defined in %scatchable_error_001.php on line 5 diff --git a/tests/lang/catchable_error_002.phpt b/tests/lang/catchable_error_002.phpt index 4ea1d19fe6..cbabde893b 100644 --- a/tests/lang/catchable_error_002.phpt +++ b/tests/lang/catchable_error_002.phpt @@ -25,7 +25,7 @@ array(5) { [0]=> int(4096) [1]=> - string(%d) "Argument 1 passed to blah() must be an instance of Foo, called in %scatchable_error_002.php on line 17 and defined" + string(%d) "Argument 1 passed to blah() must be an instance of Foo, instance of stdClass given, called in %scatchable_error_002.php on line 17 and defined" [2]=> string(%d) "%scatchable_error_002.php" [3]=> diff --git a/tests/lang/type_hints_001.phpt b/tests/lang/type_hints_001.phpt index dc14706a36..57808d474f 100644 --- a/tests/lang/type_hints_001.phpt +++ b/tests/lang/type_hints_001.phpt @@ -23,4 +23,4 @@ type_hint_foo($bar); ?> --EXPECTF-- -Catchable fatal error: Argument 1 passed to type_hint_foo() must be an instance of Foo, called in %s on line 16 and defined in %s on line 9 +Catchable fatal error: Argument 1 passed to type_hint_foo() must be an instance of Foo, instance of Bar given, called in %s on line 16 and defined in %s on line 9 |