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

Unified Diff: tests/corelib/src/StringBaseVMTest.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/StringBaseVMTest.dart
diff --git a/tests/corelib/src/StringBaseVMTest.dart b/tests/corelib/src/StringBaseVMTest.dart
deleted file mode 100644
index d96702e94f3fe490cc72cb4fe7dcb0b01735f93b..0000000000000000000000000000000000000000
--- a/tests/corelib/src/StringBaseVMTest.dart
+++ /dev/null
@@ -1,94 +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 program for testing class 'StringBase' (currently VM specific).
-
-#library("StringBaseTest.dart");
-#import("dart:coreimpl");
-
-
-class StringBaseTest {
-
- StringBaseTest() {}
-
- toString() {
- return "StringBase Tester";
- }
- static testSubstringMatches() {
- Expect.equals(true, "Hello".substringMatches(0, "Hello"));
- Expect.equals(true, "Hello World".substringMatches(0, "Hello"));
- Expect.equals(false, "My Hello World".substringMatches(0, "Hello"));
- Expect.equals(true, "My Hello World".substringMatches(6, "lo W"));
- Expect.equals(false, "Hello".substringMatches(0, "low"));
- }
-
- static testInterpolation() {
- var answer = 40 + 2;
- var s = "The answer is $answer.";
- Expect.equals("The answer is 42.", s);
-
- int numBottles = 33;
- String wall = "wall";
- s = "${numBottles*3} bottles of beer on the $wall.";
- Expect.equals("99 bottles of beer on the wall.", s);
- }
-
- static testCreation() {
- String s = "Hello";
- List<int> a = new List(s.length);
- List<int> ga = new List();
- bool exception_caught = false;
- for (int i = 0; i < a.length; i++) {
- a[i] = s.charCodeAt(i);
- ga.add(s.charCodeAt(i));
- }
- String s2 = StringBase.createFromCharCodes(a);
- Expect.equals(s, s2);
- String s3 = StringBase.createFromCharCodes(ga);
- Expect.equals(s, s3);
- try {
- String s4 = new String.fromCharCodes([0.0]);
- } catch (IllegalArgumentException ex) {
- exception_caught = true;
- }
- Expect.equals(true, exception_caught);
- exception_caught = false;
- try {
- String s4 = new String.fromCharCodes([-1]);
- } catch (IllegalArgumentException ex) {
- exception_caught = true;
- }
- Expect.equals(true, exception_caught);
- }
-
- static testSubstring() {
- String s = "Hello World";
- Expect.equals("World", s.substring(6, s.length));
- Expect.equals("", s.substring(8, 8));
- bool exception_caught = false;
- try {
- s.substring(5, 12);
- } catch (IndexOutOfRangeException ex) {
- exception_caught = true;
- }
- Expect.equals(true, exception_caught);
- exception_caught = false;
- try {
- s.substring(5, 4);
- } catch (IndexOutOfRangeException ex) {
- exception_caught = true;
- }
- Expect.equals(true, exception_caught);
- }
-
- static void testMain() {
- testSubstringMatches();
- testInterpolation();
- testCreation();
- testSubstring();
- }
-}
-
-main() {
- StringBaseTest.testMain();
-}

Powered by Google App Engine
This is Rietveld 408576698