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

Unified Diff: tests/corelib/string_from_list_test.dart

Issue 11411092: Revert "Add some support for the code-point code-unit distinction." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « tests/corelib/reg_exp_unicode_test.dart ('k') | tests/corelib/string_trim_unicode_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/string_from_list_test.dart
diff --git a/tests/corelib/string_from_list_test.dart b/tests/corelib/string_from_list_test.dart
index 78d7412372c15585e18bafac905c5ad68bbc8c57..acd0f5c22eef79e4cfea4391a9639fbfa63c625d 100644
--- a/tests/corelib/string_from_list_test.dart
+++ b/tests/corelib/string_from_list_test.dart
@@ -9,32 +9,11 @@ class StringFromListTest {
Expect.equals("", new String.fromCharCodes(const []));
Expect.equals("AB", new String.fromCharCodes([65, 66]));
Expect.equals("AB", new String.fromCharCodes(const [65, 66]));
- Expect.equals("Ærø", new String.fromCharCodes(const [0xc6, 0x72, 0xf8]));
- Expect.equals("\u{1234}", new String.fromCharCodes([0x1234]));
- Expect.equals("\u{12345}*", new String.fromCharCodes([0x12345, 42]));
Expect.equals("", new String.fromCharCodes(new List()));
- {
- var a = new List();
- a.add(65);
- a.add(66);
- Expect.equals("AB", new String.fromCharCodes(a));
- }
-
- Expect.equals("", new String.fromCodeUnits(new List(0)));
- Expect.equals("", new String.fromCodeUnits([]));
- Expect.equals("", new String.fromCodeUnits(const []));
- Expect.equals("AB", new String.fromCodeUnits([65, 66]));
- Expect.equals("AB", new String.fromCodeUnits(const [65, 66]));
- Expect.equals("Ærø", new String.fromCodeUnits(const [0xc6, 0x72, 0xf8]));
- Expect.equals("\u{1234}", new String.fromCodeUnits([0x1234]));
- Expect.equals("\u{12345}*", new String.fromCodeUnits([0xd808, 0xdf45, 42]));
- Expect.equals("", new String.fromCodeUnits(new List()));
- {
- var a = new List();
- a.add(65);
- a.add(66);
- Expect.equals("AB", new String.fromCodeUnits(a));
- }
+ var a = new List();
+ a.add(65);
+ a.add(66);
+ Expect.equals("AB", new String.fromCharCodes(a));
}
}
« no previous file with comments | « tests/corelib/reg_exp_unicode_test.dart ('k') | tests/corelib/string_trim_unicode_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698