php-src/ext/spl/tests/SplFixedArray__construct_param_null.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

16 lines
No EOL
228 B
PHP

--TEST--
SplFixedArray::__construct() with null passed as parameter.
--CREDITS--
PHPNW Test Fest 2009 - Jordan Hatch
--FILE--
<?php
$array = new SplFixedArray( NULL );
print_r( $array );
?>
--EXPECT--
SplFixedArray Object
(
)