summaryrefslogtreecommitdiff
path: root/test/junit/scala/math/BigIntTest.scala
blob: 5a5694a7756730a2de2f5308a3c533bfb27b502d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package scala.math

import java.math.{BigInteger => BI, MathContext => MC}

import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4

@RunWith(classOf[JUnit4])
class BigIntTest {

  @Test
  def testIsComparable() {
    assert(BigInt(1).isInstanceOf[java.lang.Comparable[_]])
  }
}