Skip to content

Commit

Permalink
Additional test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbuckle committed Mar 19, 2021
1 parent 7850f92 commit 8ecfbc6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Tests/HumanizeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public void TestIntToFloatingMantissa(int number, string expected)
[DataRow(100000, "100,000")]
[DataRow(51000001, "51,000,000")]
[DataRow(-51000000, "minus 51,000,000")]
[DataRow(94500, "94,500")]
[DataRow(9450000, "nearly 9 and a half million")]
[DataRow(94500000, "94,500,000")]
[DataRow(-12345, "well over minus 12 thousand")]
[DataRow(1800001, "1,800,000")]
[DataRow(-1999001, "nearly minus 2 million")]
Expand Down

0 comments on commit 8ecfbc6

Please sign in to comment.