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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 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 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
5 main() { 7 main() {
6 test(String s) { 8 test(String s) {
7 Iterable<int> units = s.codeUnits; 9 Iterable<int> units = s.codeUnits;
8 List<int> expectedUnits = <int>[]; 10 List<int> expectedUnits = <int>[];
9 for (int i = 0; i < s.length; i++) { 11 for (int i = 0; i < s.length; i++) {
10 expectedUnits.add(s.codeUnitAt(i)); 12 expectedUnits.add(s.codeUnitAt(i));
11 } 13 }
12 14
13 Expect.equals(s.length, units.length); 15 Expect.equals(s.length, units.length);
14 for (int i = 0; i < s.length; i++) { 16 for (int i = 0; i < s.length; i++) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 test(string); 68 test(string);
67 69
68 // Reading each unit of a surrogate pair works. 70 // Reading each unit of a surrogate pair works.
69 var r = "\u{10000}".codeUnits; 71 var r = "\u{10000}".codeUnits;
70 var it = r.iterator; 72 var it = r.iterator;
71 Expect.isTrue(it.moveNext()); 73 Expect.isTrue(it.moveNext());
72 Expect.equals(0xD800, it.current); 74 Expect.equals(0xD800, it.current);
73 Expect.isTrue(it.moveNext()); 75 Expect.isTrue(it.moveNext());
74 Expect.equals(0xDC00, it.current); 76 Expect.equals(0xDC00, it.current);
75 } 77 }
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