summaryrefslogtreecommitdiff
path: root/test/junit/scala/math/NumericTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/junit/scala/math/NumericTest.scala')
-rw-r--r--test/junit/scala/math/NumericTest.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/junit/scala/math/NumericTest.scala b/test/junit/scala/math/NumericTest.scala
new file mode 100644
index 0000000000..4f0657f471
--- /dev/null
+++ b/test/junit/scala/math/NumericTest.scala
@@ -0,0 +1,18 @@
+
+
+import org.junit.Assert._
+import org.junit.Test
+import org.junit.runner.RunWith
+import org.junit.runners.JUnit4
+
+@RunWith(classOf[JUnit4])
+class NumericTest {
+
+ /* Test for SI-8102 */
+ @Test
+ def testAbs {
+ assertTrue(-0.0.abs equals 0.0)
+ assertTrue(-0.0f.abs equals 0.0f)
+ }
+}
+