Skip to content

Commit

Permalink
Add tests for BigNumber::of()
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Aug 18, 2020
1 parent d493693 commit b69d0da
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/BigDecimalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ public function providerOf() : array
['+.2', '2', 1],
['-.33', '-33', 2],
['1.e2', '100', 0],
['.1e-1', '1', 2],
['.1e0', '1', 1],
['.1e1', '1', 0],
['.1e2', '10', 0],
['1.e-2', '1', 2],
['.1e-2', '1', 3],
Expand Down

0 comments on commit b69d0da

Please sign in to comment.