From 17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3 Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Fri, 16 Dec 2005 18:20:15 +0000 Subject: Removed old scala tests from new Scala core mod... Removed old scala tests from new Scala core module. --- test/files/run/iterators.scala | 79 ------------------------------------------ 1 file changed, 79 deletions(-) delete mode 100644 test/files/run/iterators.scala (limited to 'test/files/run/iterators.scala') diff --git a/test/files/run/iterators.scala b/test/files/run/iterators.scala deleted file mode 100644 index 7d1e44a0df..0000000000 --- a/test/files/run/iterators.scala +++ /dev/null @@ -1,79 +0,0 @@ -//############################################################################ -// Iterators -//############################################################################ -// $Id$ - -//############################################################################ - -object Test { - - def check_from: Int = { - val it1 = Iterator.from(-1); - val it2 = Iterator.from(0, -1); - it1.next + it2.next - } - - def check_range: Int = { - val xs1 = Iterator.range(0, 10, 2) toList; - val xs2 = Iterator.range(0, 10, -2) toList; - val xs3 = Iterator.range(10, 0, -2) toList; - val xs4 = Iterator.range(10, 0, 2) toList; - xs1.length + xs2.length + xs3.length + xs4.length - } - - def check_take: Int = { - val it1 = Iterator.from(0); - val xs1 = it1 take 10 toList; - xs1.length - } - - def check_drop: Int = { - val it1 = Iterator.from(0); - val it2 = it1 map { x => 2 * x }; - val n1 = it1 drop 2 next; - val n2 = it2 drop 2 next; - n1 + n2 - } - - def check_foreach: Int = { - val it1 = Iterator.from(0) take 20; - var n = 0; - it1 foreach { x => n = n + x } - n - } - - def check_forall: Int = { - val it1 = Iterator.from(0); - val it2 = Iterator.from(1); - 0 - } - - def check_success[A](name: String, closure: => A, expected: A): Unit = { - Console.print("test " + name); - try { - val actual: A = closure; - if (actual == expected) - Console.print(" was successful"); - else - Console.print(" failed: expected "+ expected +", found "+ actual); - } - catch { - case exception: Throwable => { - Console.print(" raised exception " + exception); - } - } - Console.println; - } - - def main(args: Array[String]): Unit = { - check_success("check_from", check_from, -1); - check_success("check_range", check_range, 10); - check_success("check_take", check_take, 10); - check_success("check_drop", check_drop, 12); - check_success("check_foreach", check_foreach, 190); - check_success("check_forall", check_forall, 0); - Console.println; - } -} - -//############################################################################ -- cgit v1.2.3