aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/MathTest.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/MathTest.php b/tests/MathTest.php
index 0cfbefe..1b96ee2 100644
--- a/tests/MathTest.php
+++ b/tests/MathTest.php
@@ -56,7 +56,10 @@ class MathTest extends \PHPUnit_Framework_TestCase
array('(2+2)*-2'),
array('(2+-2)*2'),
- array('sin(10) * cos(50) / min(10, 20/2)')
+ array('sin(10) * cos(50) / min(10, 20/2)'),
+
+ array('100500 * 3.5E5'),
+ array('100500 * 3.5E-5')
);
}
} \ No newline at end of file