File: equality.scala

package info (click to toggle)
scala 2.9.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 67,208 kB
  • sloc: java: 27,488; xml: 4,412; python: 2,297; sh: 734; makefile: 16; ansic: 6
file content (40 lines) | stat: -rw-r--r-- 1,235 bytes parent folder | download | duplicates (2)
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))
  }
}