Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1284)

Unified Diff: tests/corelib/src/SplayTreeTest.dart

Issue 10244009: test rename overhaul: step 7 - corelib tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/corelib/src/SplayTreeTest.dart
diff --git a/tests/corelib/src/SplayTreeTest.dart b/tests/corelib/src/SplayTreeTest.dart
deleted file mode 100644
index dd3601c88d2b60b51160ba2829b16d287290002d..0000000000000000000000000000000000000000
--- a/tests/corelib/src/SplayTreeTest.dart
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// Dart test for Splaytrees.
-#library("SplayTreeTest.dart");
-#import("dart:coreimpl");
-
-
-class SplayTreeMapTest {
-
- static testMain() {
- SplayTreeMap tree = new SplayTreeMap();
- tree[1] = "first";
- tree[3] = "third";
- tree[5] = "fifth";
- tree[2] = "second";
- tree[4] = "fourth";
-
- var correctSolution = ["first", "second", "third", "fourth", "fifth"];
-
- tree.forEach((key, value) {
- Expect.equals(true, key >= 1);
- Expect.equals(true, key <= 5);
- Expect.equals(value, correctSolution[key - 1]);
- });
-
- for (var v in ["first", "second", "third", "fourth", "fifth"]) {
- Expect.isTrue(tree.containsValue(v));
- };
- Expect.isFalse(tree.containsValue("sixth"));
-
- tree[7] = "seventh";
-
- Expect.equals(1, tree.firstKey());
- Expect.equals(7, tree.lastKey());
-
- Expect.equals(2, tree.lastKeyBefore(3));
- Expect.equals(4, tree.firstKeyAfter(3));
-
- Expect.equals(null, tree.lastKeyBefore(1));
- Expect.equals(2, tree.firstKeyAfter(1));
-
- Expect.equals(4, tree.lastKeyBefore(5));
- Expect.equals(7, tree.firstKeyAfter(5));
-
- Expect.equals(5, tree.lastKeyBefore(7));
- Expect.equals(null, tree.firstKeyAfter(7));
-
- Expect.equals(5, tree.lastKeyBefore(6));
- Expect.equals(7, tree.firstKeyAfter(6));
- }
-}
-
-main() {
- SplayTreeMapTest.testMain();
-}

Powered by Google App Engine
This is Rietveld 408576698