php-src/ext/calendar/tests/gregoriantojd.phpt
Hartmut Holzgraefe 1fffe3cfa7 additional test cases added, should now cover all functions and modes
allthough still not all edge cases
2006-07-09 16:30:02 +00:00

18 lines
324 B
PHP

--TEST--
gregoriantojd()
--SKIPIF--
<?php include 'skipif.inc'; ?>
--FILE--
<?php
echo gregoriantojd( 0, 0, 0). "\n";
echo gregoriantojd( 1, 1, 1582). "\n";
echo gregoriantojd(10, 5, 1582). "\n";
echo gregoriantojd( 1, 1, 1970). "\n";
echo gregoriantojd( 1, 1, 2999). "\n";
?>
--EXPECT--
0
2298874
2299151
2440588
2816423