remove test case

This commit is contained in:
Tom McCabe 2016-07-29 13:29:46 -05:00
parent 39f4e30a83
commit 128adb01e8

View file

@ -63,13 +63,4 @@ class Int32Test extends FlatSpec with MustMatchers {
it must "have the correct maximum number representation" in {
Int32.max.underlying must be (2147483647)
}
/* it must "intercept illegal argument exceptions when casting integer below minimum and above maximum values" in {
intercept[IllegalArgumentException] {
Int32(Int.MaxValue + 1)
}
intercept[IllegalArgumentException] {
Int32(Int.MinValue - 1)
}
}*/
}