php-src/ext/mysqli/tests/mysqli_init.phpt
Nikita Popov e3e67b721f Reindent more mysqli tests
Due to a bug in the tidy script, most tests did not actually get
reindented...
2020-11-25 16:07:16 +01:00

24 lines
552 B
PHP

--TEST--
mysqli_init()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
$link = mysqli_init();
if (!is_object($link) && false !== $link)
printf("[001] Expecting object/mysqli_link or boolean/false, got %s/%s\n", gettype($link), $link);
if (is_object($link) && 'mysqli' != get_class($link))
printf("[002] Expecting object of type mysqli got object of type %s\n", get_class($link));
if ($link)
mysqli_close($link);
print "done!";
?>
--EXPECT--
done!