Array tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and Linux 64 bit).

This commit is contained in:
Ant Phillips 2008-12-05 14:11:03 +00:00
parent 0811347c26
commit 8c0a7983db
3 changed files with 7 additions and 34 deletions

View File

@ -1,12 +1,5 @@
--TEST--
Test array_diff_ukey() function : usage variation - Passing class without string to callback (Handling fatal error)
--SKIPIF--
<?php
$php_version = phpversion();
if(stristr($php_version, "5.2" ) == FALSE){
die('skip Test is applicable only for PHP5.2');
}
?>
--FILE--
<?php
/* Prototype : array array_diff_ukey(array arr1, array arr2 [, array ...], callback key_comp_func)
@ -44,10 +37,8 @@ var_dump( array_diff_ukey($array1, $array2, $array3, $value) );
===DONE===
--EXPECTF--
*** Testing array_diff_ukey() : usage variation ***
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_diff_ukey(): Not a valid callback , %s(%d)
Error: 2 - array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given, %s(%d)
NULL
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_diff_ukey(): Not a valid callback , %s(%d)
Error: 2 - array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given, %s(%d)
NULL
===DONE===

View File

@ -1,12 +1,5 @@
--TEST--
Test array_intersect_uassoc() function : usage variation - Passing class without string to callback (Handling fatal error)
--SKIPIF--
<?php
$php_version = phpversion();
if(stristr($php_version, "5.2" ) == FALSE){
die('skip Test is applicable only for PHP5.2');
}
?>
--FILE--
<?php
/* Prototype : array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_compare_func)
@ -42,10 +35,8 @@ var_dump( array_intersect_uassoc($array1, $array2, $array3, $value) );
===DONE===
--EXPECTF--
*** Testing array_intersect_uassoc() : usage variation ***
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_intersect_uassoc(): Not a valid callback , %s(%d)
Error: 2 - array_intersect_uassoc() expects parameter 3 to be a valid callback, no array or string given, %s(%d)
NULL
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_intersect_uassoc(): Not a valid callback , %s(%d)
Error: 2 - array_intersect_uassoc() expects parameter 4 to be a valid callback, no array or string given, %s(%d)
NULL
===DONE===
===DONE===

View File

@ -1,12 +1,5 @@
--TEST--
Test array_intersect_ukey() function : usage variation - Passing class without string to callback (Handling fatal error)
--SKIPIF--
<?php
$php_version = phpversion();
if(stristr($php_version, "5.2" ) == FALSE){
die('skip Test is applicable only for PHP5.2');
}
?>
--FILE--
<?php
/* Prototype : array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compare_func)
@ -43,10 +36,8 @@ var_dump( array_intersect_ukey($array1, $array2, $array3, $value) );
===DONE===
--EXPECTF--
*** Testing array_intersect_uassoc() : usage variation ***
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_intersect_ukey(): Not a valid callback , %s(%d)
Error: 2 - array_intersect_ukey() expects parameter 3 to be a valid callback, no array or string given, %s(%d)
NULL
Error: 4096 - Object of class classWithoutToString could not be converted to string, %s(%d)
Error: 2 - array_intersect_ukey(): Not a valid callback , %s(%d)
Error: 2 - array_intersect_ukey() expects parameter 4 to be a valid callback, no array or string given, %s(%d)
NULL
===DONE===