ru_php/ext/calendar/tests/unixtojd_error1.phpt

25 lines
455 B
PHP

--TEST--
Test unixtojd() function : error conditions
--CREDITS--
edgarsandi - <edgar.r.sandi@gmail.com>
--EXTENSIONS--
calendar
--INI--
date.timezone=UTC
--FILE--
<?php
putenv('TZ=UTC');
try {
unixtojd(-1);
} catch (ValueError $ex) {
echo $ex->getMessage(), PHP_EOL;
}
var_dump(unixtojd(null)) . PHP_EOL;
var_dump(unixtojd(time())) . PHP_EOL;
?>
--EXPECTF--
unixtojd(): Argument #1 ($timestamp) must be greater than or equal to 0
int(%d)
int(%d)