Home
last modified time | relevance | path

Searched refs:expected (Results 76 – 100 of 1017) sorted by relevance

12345678910>>...41

/PHP-7.3/ext/standard/tests/array/
H A Darray_diff_ukey_error.phpt25 //Test array_diff_ukey with one more than the expected number of arguments
26 echo "\n-- Testing array_diff_ukey() function with more than expected no. of arguments --\n";
29 // Testing array_diff_ukey with one less than the expected number of arguments
30 echo "\n-- Testing array_diff_ukey() function with less than expected no. of arguments --\n";
33 // Testing array_diff_ukey with one less than the expected number of arguments
41 -- Testing array_diff_ukey() function with more than expected no. of arguments --
46 -- Testing array_diff_ukey() function with less than expected no. of arguments --
H A Darray_fill_error.phpt17 // More than expected number of arguments
18 echo "-- Testing array_fill() function with more than expected no. of arguments --\n";
25 // Less than the expected number of arguments
26 echo "-- Testing array_fill() function with less than expected no. of arguments --\n";
43 -- Testing array_fill() function with more than expected no. of arguments --
47 -- Testing array_fill() function with less than expected no. of arguments --
H A Darray_pad_error.phpt16 //Test array_pad with one more than the expected number of arguments
17 echo "\n-- Testing array_pad() function with more than expected no. of arguments --\n";
24 // Testing array_pad with less than the expected number of arguments
25 echo "\n-- Testing array_pad() function with less than expected no. of arguments --\n";
41 -- Testing array_pad() function with more than expected no. of arguments --
46 -- Testing array_pad() function with less than expected no. of arguments --
H A Darray_udiff_uassoc_error.phpt22 //Test array_udiff_uassoc with one more than the expected number of arguments
23 echo "\n-- Testing array_udiff_uassoc() function with more than expected no. of arguments --\n";
26 // Testing array_udiff_uassoc with one less than the expected number of arguments
27 echo "\n-- Testing array_udiff_uassoc() function with less than expected no. of arguments --\n";
35 -- Testing array_udiff_uassoc() function with more than expected no. of arguments --
40 -- Testing array_udiff_uassoc() function with less than expected no. of arguments --
H A Darray_uintersect_uassoc_error.phpt23 //Test array_uintersect_uassoc with one more than the expected number of arguments
24 echo "\n-- Testing array_uintersect_uassoc() function with more than expected no. of arguments --\n…
27 // Testing array_uintersect_uassoc with one less than the expected number of arguments
28 echo "\n-- Testing array_uintersect_uassoc() function with less than expected no. of arguments --\n…
36 -- Testing array_uintersect_uassoc() function with more than expected no. of arguments --
41 -- Testing array_uintersect_uassoc() function with less than expected no. of arguments --
H A Dkey_exists_basic.phpt2 Test function key_exists() by calling it with its expected arguments
8 echo "*** test key_exists() by calling it with its expected arguments ***\n";
13 *** test key_exists() by calling it with its expected arguments ***
H A Darray_intersect_ukey_error.phpt25 //Test array_intersect_ukey with one more than the expected number of arguments
26 echo "\n-- Testing array_intersect_ukey() function with more than expected no. of arguments --\n";
30 // Testing array_intersect_ukey with one less than the expected number of arguments
31 echo "\n-- Testing array_intersect_ukey() function with less than expected no. of arguments --\n";
42 -- Testing array_intersect_ukey() function with more than expected no. of arguments --
47 -- Testing array_intersect_ukey() function with less than expected no. of arguments --
H A Dkey_exists_variation1.phpt2 Test function key_exists() by calling it with its expected arguments
8 echo "*** test key_exists() by calling it with its expected arguments ***\n";
13 *** test key_exists() by calling it with its expected arguments ***
/PHP-7.3/ext/standard/tests/strings/
H A Dbug69144.phpt7 foreach ($tests as $input => $expected) {
8 if ($expected !== ($actual = strtr($input, array("fo" => "", "foobar" => "", "bar" => "")))) {
9 echo "KO `$input` became `$actual` instead of `$expected`\n";
H A Dstrval_error.phpt22 //Test strval with one more than the expected number of arguments
23 echo "\n-- Testing strval() function with more than expected no. of arguments --\n";
26 // Testing strval with one less than the expected number of arguments
27 echo "\n-- Testing strval() function with less than expected no. of arguments --\n";
39 -- Testing strval() function with more than expected no. of arguments --
44 -- Testing strval() function with less than expected no. of arguments --
H A Dstrcspn_error.phpt22 //Test strcspn with one more than the expected number of arguments
23 echo "\n-- Testing strcspn() function with more than expected no. of arguments --\n";
33 // Testing strcspn withone less than the expected number of arguments
34 echo "\n-- Testing strcspn() function with less than expected no. of arguments --\n";
48 -- Testing strcspn() function with more than expected no. of arguments --
53 -- Testing strcspn() function with less than expected no. of arguments --
H A Dstrspn_error.phpt22 //Test strspn with one more than the expected number of arguments
23 echo "\n-- Testing strspn() function with more than expected no. of arguments --\n";
33 // Testing strspn withone less than the expected number of arguments
34 echo "\n-- Testing strspn() function with less than expected no. of arguments --\n";
48 -- Testing strspn() function with more than expected no. of arguments --
53 -- Testing strspn() function with less than expected no. of arguments --
/PHP-7.3/ext/date/tests/
H A Dbug73294.phpt11 $expected = "{$i}-{$M}-{$D} 00:00:00";
14 if ( $expected != $result )
16 echo "Wrong: Should have been {$expected}, was {$result}\n";
/PHP-7.3/ext/standard/tests/file/
H A Dcopy_variation11.phpt31 var_dump( copy($file, $dir) ); //expected: bool(false)
33 var_dump( file_exists($file) ); //expected: bool(true)
34 var_dump( file_exists($dir) ); //expected: bool(true)
36 var_dump( is_file($file) ); //expected: bool(true)
37 var_dump( is_dir($file) ); //expected: bool(false)
39 var_dump( is_file($dir) ); //expected: bool(false)
40 var_dump( is_dir($dir) ); //expected: bool(true)
H A Dmkdir_rmdir_error.phpt13 var_dump( mkdir() ); // args < expected
14 var_dump( mkdir(1, 2, 3, 4, 5) ); // args > expected
15 var_dump( mkdir("testdir", 0777, false, $context, "test") ); // args > expected
18 var_dump( rmdir() ); // args < expected
19 var_dump( rmdir(1, 2, 3) ); // args > expected
20 var_dump( rmdir("testdir", $context, "test") ); // args > expected
/PHP-7.3/ext/mbstring/tests/
H A Dmb_stripos_error1.phpt23 //Test mb_stripos with one more than the expected number of arguments
24 echo "\n-- Testing mb_stripos() function with more than expected no. of arguments --\n";
32 // Testing mb_stripos with one less than the expected number of arguments
33 echo "\n-- Testing mb_stripos() function with less than expected no. of arguments --\n";
42 -- Testing mb_stripos() function with more than expected no. of arguments --
47 -- Testing mb_stripos() function with less than expected no. of arguments --
H A Dmb_strripos_error1.phpt23 //Test mb_strripos with one more than the expected number of arguments
24 echo "\n-- Testing mb_strripos() function with more than expected no. of arguments --\n";
32 // Testing mb_strripos with one less than the expected number of arguments
33 echo "\n-- Testing mb_strripos() function with less than expected no. of arguments --\n";
42 -- Testing mb_strripos() function with more than expected no. of arguments --
47 -- Testing mb_strripos() function with less than expected no. of arguments --
H A Dmb_ereg_match_error1.phpt22 //Test mb_ereg_match with one more than the expected number of arguments
23 echo "\n-- Testing mb_ereg_match() function with more than expected no. of arguments --\n";
30 // Testing mb_ereg_match with one less than the expected number of arguments
31 echo "\n-- Testing mb_ereg_match() function with less than expected no. of arguments --\n";
44 -- Testing mb_ereg_match() function with more than expected no. of arguments --
49 -- Testing mb_ereg_match() function with less than expected no. of arguments --
/PHP-7.3/ext/iconv/tests/
H A Diconv_strpos_error1.phpt22 //Test iconv_strpos with one more than the expected number of arguments
23 echo "\n-- Testing iconv_strpos() function with more than expected no. of arguments --\n";
31 // Testing iconv_strpos with one less than the expected number of arguments
32 echo "\n-- Testing iconv_strpos() function with less than expected no. of arguments --\n";
41 -- Testing iconv_strpos() function with more than expected no. of arguments --
46 -- Testing iconv_strpos() function with less than expected no. of arguments --
/PHP-7.3/ext/imap/tests/
H A Dimap_fetchbody_error.phpt22 //Test imap_fetchbody with one more than the expected number of arguments
23 echo "\n-- Testing imap_fetchbody() function with more than expected no. of arguments --\n";
33 // Testing imap_fetchbody with one less than the expected number of arguments
34 echo "\n-- Testing imap_fetchbody() function with less than expected no. of arguments --\n";
46 -- Testing imap_fetchbody() function with more than expected no. of arguments --
53 -- Testing imap_fetchbody() function with less than expected no. of arguments --
H A Dimap_fetch_overview_error.phpt23 //Test imap_fetch_overview with one more than the expected number of arguments
24 echo "\n-- Testing imap_fetch_overview() function with more than expected no. of arguments --\n";
31 // Testing imap_fetch_overview with one less than the expected number of arguments
32 echo "\n-- Testing imap_fetch_overview() function with less than expected no. of arguments --\n";
43 -- Testing imap_fetch_overview() function with more than expected no. of arguments --
50 -- Testing imap_fetch_overview() function with less than expected no. of arguments --
/PHP-7.3/ext/pcre/tests/
H A Dpreg_replace_callback_error.phpt13 //Test preg_replace_callback() with one more than the expected number of arguments
14 echo "\n-- Testing preg_replace_callback() function with more than expected no. of arguments --\n";
25 //Testing preg_replace_callback() with one less than the expected number of arguments
26 echo "\n-- Testing preg_replace_callback() function with less than expected no. of arguments --\n";
39 -- Testing preg_replace_callback() function with more than expected no. of arguments --
44 -- Testing preg_replace_callback() function with less than expected no. of arguments --
/PHP-7.3/ext/standard/tests/math/
H A Ddecbin_error.phpt15 echo "\n-- Testing expm1() function with less than expected no. of arguments --\n";
17 echo "\n-- Testing expm1() function with more than expected no. of arguments --\n";
25 -- Testing expm1() function with less than expected no. of arguments --
29 -- Testing expm1() function with more than expected no. of arguments --
H A Dexpm1_error.phpt13 echo "\n-- Testing expm1() function with less than expected no. of arguments --\n";
15 echo "\n-- Testing expm1() function with more than expected no. of arguments --\n";
23 -- Testing expm1() function with less than expected no. of arguments --
27 -- Testing expm1() function with more than expected no. of arguments --
H A Dlog1p_error.phpt13 echo "\n-- Testing log1p() function with less than expected no. of arguments --\n";
15 echo "\n-- Testing log1p() function with more than expected no. of arguments --\n";
22 -- Testing log1p() function with less than expected no. of arguments --
26 -- Testing log1p() function with more than expected no. of arguments --

Completed in 254 milliseconds

12345678910>>...41