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

Side by Side Diff: tests/corelib/string_codeunits_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/corelib/string_case_test.dart ('k') | tests/corelib/string_from_list_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "package:expect/expect.dart";
6
7 main() { 5 main() {
8 test(String s) { 6 test(String s) {
9 Iterable<int> units = s.codeUnits; 7 Iterable<int> units = s.codeUnits;
10 List<int> expectedUnits = <int>[]; 8 List<int> expectedUnits = <int>[];
11 for (int i = 0; i < s.length; i++) { 9 for (int i = 0; i < s.length; i++) {
12 expectedUnits.add(s.codeUnitAt(i)); 10 expectedUnits.add(s.codeUnitAt(i));
13 } 11 }
14 12
15 Expect.equals(s.length, units.length); 13 Expect.equals(s.length, units.length);
16 for (int i = 0; i < s.length; i++) { 14 for (int i = 0; i < s.length; i++) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 test(string); 66 test(string);
69 67
70 // Reading each unit of a surrogate pair works. 68 // Reading each unit of a surrogate pair works.
71 var r = "\u{10000}".codeUnits; 69 var r = "\u{10000}".codeUnits;
72 var it = r.iterator; 70 var it = r.iterator;
73 Expect.isTrue(it.moveNext()); 71 Expect.isTrue(it.moveNext());
74 Expect.equals(0xD800, it.current); 72 Expect.equals(0xD800, it.current);
75 Expect.isTrue(it.moveNext()); 73 Expect.isTrue(it.moveNext());
76 Expect.equals(0xDC00, it.current); 74 Expect.equals(0xDC00, it.current);
77 } 75 }
OLDNEW
« no previous file with comments | « tests/corelib/string_case_test.dart ('k') | tests/corelib/string_from_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698