aboutsummaryrefslogtreecommitdiff
path: root/tests/run/equality.scala
blob: ff5989882196e7a15c38ad38f61d008475429572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// a quickly assembled test of equality.  Needs work.
object Test
{
  import scala.runtime.ScalaRunTime.hash

  def makeFromInt(x: Int) = List(
    x.toByte, x.toShort, x.toInt, x.toLong, x.toFloat, x.toDouble, BigInt(x), BigDecimal(x)
  ) ::: (
    if (x < 0) Nil else List(x.toChar)
  )
  def makeFromDouble(x: Double) = List(
    x.toShort, x.toInt, x.toLong, x.toFloat, x.toDouble, BigInt(x.toInt), BigDecimal(x)
  )

  def main(args: Array[String]): Unit = {
    var xs = makeFromInt(5)
    for (x <- xs ; y <- xs) {
      assert(x == y, x + " == " + y)
      assert(hash(x) == hash(y), "hash(%s) == hash(%s)".format(x, y))
    }

    xs = makeFromInt(-5)
    for (x <- xs ; y <- xs) {
      assert(x == y, x + " == " + y)
      assert(hash(x) == hash(y), "hash(%s) == hash(%s)".format(x, y))
    }

    xs = makeFromDouble(500.0)
    for (x <- xs ; y <- xs) {
      assert(x == y, x + " == " + y)
      assert(hash(x) == hash(y), "hash(%s) == hash(%s)".format(x, y))
    }

    // negatives
    val bigLong = new java.util.concurrent.atomic.AtomicLong(Long.MaxValue)
    assert(-1 != bigLong && bigLong != -1)  // bigLong.intValue() == -1
    assert(BigDecimal(1.1) != 1L)
    assert(1L != BigDecimal(1.1))
  }
}