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

Unified Diff: tests/language/src/StringEscapesTest.dart

Issue 10248007: test rename overhaul: step 8 - language 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/language/src/StringEscapesTest.dart
diff --git a/tests/language/src/StringEscapesTest.dart b/tests/language/src/StringEscapesTest.dart
deleted file mode 100644
index 8f711c29f327926190b14991c18db1b3c27bad5f..0000000000000000000000000000000000000000
--- a/tests/language/src/StringEscapesTest.dart
+++ /dev/null
@@ -1,65 +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.
-
-class StringEscapesTest {
-
- static testMain() {
- testDelimited();
- testFixed2();
- testFixed4();
- testEscapes();
- testLiteral();
- }
-
- static testDelimited() {
- String str = "Foo\u{1}Bar\u{000001}Baz\u{D7FF}Boo";
- Expect.equals(15, str.length);
- Expect.equals(1, str.charCodeAt(3));
- Expect.equals(1, str.charCodeAt(7));
- Expect.equals(0xD7FF, str.charCodeAt(11));
- Expect.equals('B'.charCodeAt(0), str.charCodeAt(12));
- }
-
- static testEscapes() {
- String str = "Foo\fBar\vBaz\bBoo";
- Expect.equals(15, str.length);
- Expect.equals(12, str.charCodeAt(3));
- Expect.equals('B'.charCodeAt(0), str.charCodeAt(4));
- Expect.equals(11, str.charCodeAt(7));
- Expect.equals('z'.charCodeAt(0), str.charCodeAt(10));
- Expect.equals(8, str.charCodeAt(11));
- Expect.equals('o'.charCodeAt(0), str.charCodeAt(14));
- str = "Abc\rDef\nGhi\tJkl";
- Expect.equals(15, str.length);
- Expect.equals(13, str.charCodeAt(3));
- Expect.equals('D'.charCodeAt(0), str.charCodeAt(4));
- Expect.equals(10, str.charCodeAt(7));
- Expect.equals('G'.charCodeAt(0), str.charCodeAt(8));
- Expect.equals(9, str.charCodeAt(11));
- Expect.equals('J'.charCodeAt(0), str.charCodeAt(12));
- }
-
- static testFixed2() {
- String str = "Foo\xFFBar";
- Expect.equals(7, str.length);
- Expect.equals(255, str.charCodeAt(3));
- Expect.equals('B'.charCodeAt(0), str.charCodeAt(4));
- }
-
- static testFixed4() {
- String str = "Foo\u0001Bar";
- Expect.equals(7, str.length);
- Expect.equals(1, str.charCodeAt(3));
- Expect.equals('B'.charCodeAt(0), str.charCodeAt(4));
- }
-
- static testLiteral() {
- String str = "\a\c\d\e\g\h\i\j\k\l\$\{\}\"";
- Expect.equals(@'acdeghijkl${}"', str);
- }
-}
-
-main() {
- StringEscapesTest.testMain();
-}
« no previous file with comments | « tests/language/src/StringEscape4NegativeTest.dart ('k') | tests/language/src/StringInterpolate1NegativeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698