File: precision.phpt

package info (click to toggle)
php-decimal 1.5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 456 kB
  • sloc: ansic: 1,928; xml: 102; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 607 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--TEST--
Decimal::precision
--SKIPIF--
<?php
if (!extension_loaded("decimal")) echo "skip";
?>
--FILE--
<?php
use Decimal\Decimal;

/**
 * Shortcut to construct a new decimal.
 */
function decimal(...$args) { return new Decimal(...$args); }

var_dump(decimal()->precision());
var_dump(decimal(5)->precision());
var_dump(decimal(5, 5)->precision());

decimal(0, 0);
?>
--EXPECTF--
int(28)
int(28)
int(5)

Fatal error: Uncaught OutOfRangeException: Decimal precision out of range in %s:%d
Stack trace:
#0 %s(%d): Decimal\Decimal->__construct(0, 0)
#1 %s(%d): decimal(0, 0)
#2 {main}
  thrown in %s on line %d