summaryrefslogtreecommitdiff
path: root/test/files/run/map_test.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:20:15 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-16 18:20:15 +0000
commit17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3 (patch)
treebb804b4038eb6d0dee58b77cea8bd2dcc6f42dc4 /test/files/run/map_test.scala
parente70a1a24ef7a7b596a92e1853fd44e96f36ad245 (diff)
downloadscala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.tar.gz
scala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.tar.bz2
scala-17e2b1c2a6f69ba74e79c30d1e44195fe732e3e3.zip
Removed old scala tests from new Scala core mod...
Removed old scala tests from new Scala core module.
Diffstat (limited to 'test/files/run/map_test.scala')
-rw-r--r--test/files/run/map_test.scala49
1 files changed, 0 insertions, 49 deletions
diff --git a/test/files/run/map_test.scala b/test/files/run/map_test.scala
deleted file mode 100644
index 1173748f80..0000000000
--- a/test/files/run/map_test.scala
+++ /dev/null
@@ -1,49 +0,0 @@
-//############################################################################
-// Immutable maps
-//############################################################################
-// $Id$
-
-//############################################################################
-
-import scala.collection.immutable.Map;
-import scala.collection.immutable.TreeMap;
-import scala.collection.immutable.ListMap;
-
-object Test with Application {
- test1();
- test2();
- Console.println("OK");
-
-
-
- def test1() = {
- val myMap:TreeMap[int,String] = new TreeMap;
- test_map(myMap);
- }
-
- def test2() = {
- val myMap:ListMap[int,String] = new ListMap;
- test_map(myMap);
- }
-
- def test_map(myMap:Map[int,String]) = {
- val map1 = myMap.update(42,"The answer");
- val map2 = map1.update(17,"A small random number");
- val map3 = map2.update(666,"A bigger random number");
- val map4 = map3.update(4711,"A big random number");
- map1 == myMap + 42 -> "The answer";
- var i = 0;
- var map = map4;
- while(i < 43) {
- map = map.update(i,i.toString());
- i = i + 1;
- }
- i = 0;
- while(i < 4712) {
- if(map.isDefinedAt(i))
- Console.print(i + "->" + map(i) + " ");
- i = i + 1;
- }
- Console.println("");
- }
-}