Skip to content

Commit

Permalink
Added test for min(-5,-10)
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskonnertz authored Oct 28, 2018
1 parent b736ab1 commit 15cb960
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/StringCalcTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ public function testCalculations()
['min(2)', 2],
['min(2,1.1)', 1.1],
['min(1,2,3)', 1],
['min(-5, -10)', -10],
['min(-10, -5)', -10],
['pow(2,3)', 8],
['radToDeg(2)', 114.59155902616],
['round(1.8)', 2],
Expand Down

0 comments on commit 15cb960

Please sign in to comment.