mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
ext/random: Remove useless tests (#18920)
This commit is contained in:
committed by
GitHub
parent
7f80d4dc7d
commit
c7f0ac1bf9
@@ -1,24 +0,0 @@
|
||||
--TEST--
|
||||
Test mt_srand() - basic function (return values) mt_srand()
|
||||
--FILE--
|
||||
<?php
|
||||
// Should return NULL if given anything that it can convert to long
|
||||
// This doesn't actually test what it does with the input :-\
|
||||
var_dump(mt_srand());
|
||||
var_dump(mt_srand(500));
|
||||
var_dump(mt_srand(500.1));
|
||||
var_dump(mt_srand("500"));
|
||||
var_dump(mt_srand("500E3"));
|
||||
var_dump(mt_srand(true));
|
||||
var_dump(mt_srand(false));
|
||||
?>
|
||||
--EXPECTF--
|
||||
NULL
|
||||
NULL
|
||||
|
||||
Deprecated: Implicit conversion from float 500.1 to int loses precision in %s on line %d
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
@@ -1,27 +0,0 @@
|
||||
--TEST--
|
||||
Test srand() - basic function test for srand()
|
||||
--FILE--
|
||||
<?php
|
||||
echo "*** Testing srand() : basic functionality ***\n";
|
||||
|
||||
// Should return NULL if given anything that it can convert to long
|
||||
// This doesn't actually test what it does with the input :-\
|
||||
var_dump(srand());
|
||||
var_dump(srand(500));
|
||||
var_dump(srand(500.1));
|
||||
var_dump(srand("500"));
|
||||
var_dump(srand("500E3"));
|
||||
var_dump(srand(true));
|
||||
var_dump(srand(false));
|
||||
?>
|
||||
--EXPECTF--
|
||||
*** Testing srand() : basic functionality ***
|
||||
NULL
|
||||
NULL
|
||||
|
||||
Deprecated: Implicit conversion from float 500.1 to int loses precision in %s on line %d
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
NULL
|
||||
Reference in New Issue
Block a user