Annotation of embedaddon/php/ext/calendar/tests/juliantojd.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: juliantojd()
                      3: --SKIPIF--
                      4: <?php include 'skipif.inc'; ?>
                      5: --FILE--
                      6: <?php
                      7: echo juliantojd( 0, 0,    0). "\n";
                      8: echo juliantojd( 1, 1, 1582). "\n";
                      9: echo juliantojd(10, 5, 1582). "\n";
                     10: echo juliantojd( 1, 1, 1970). "\n";
                     11: echo juliantojd( 1, 1, 2999). "\n";
                     12: ?>
                     13: --EXPECT--
                     14: 0
                     15: 2298884
                     16: 2299161
                     17: 2440601
                     18: 2816443

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>