Viewing File: /opt/alt/tests/alt-php84-pecl-mongodb_1.20.0-2.el8/tests/bson-decimal128-003.phpt

--TEST--
MongoDB\BSON\Decimal128 Infinity values
--FILE--
<?php

$tests = [
    1.7976931348623158e+308+1.7976931348623158e+308,
    INF,
    'inf',
    'Inf',
    'INF',
    'infinity',
    'Infinity',
    'INFINITY',
];

foreach ($tests as $test) {
    printf("%s\n", new MongoDB\BSON\Decimal128($test));
}

?>
===DONE===
<?php exit(0); ?>
--EXPECT--
Infinity
Infinity
Infinity
Infinity
Infinity
Infinity
Infinity
Infinity
===DONE===
Back to Directory File Manager
<