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

Side by Side Diff: tests/corelib/integer_to_radix_string_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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 that we accept radix 2 to 36 and that we use lower-case 6 // Test that we accept radix 2 to 36 and that we use lower-case
9 // letters. 7 // letters.
10 var expected = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 8 var expected = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
11 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 9 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
12 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 10 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
13 'u', 'v', 'w', 'x', 'y', 'z']; 11 'u', 'v', 'w', 'x', 'y', 'z'];
14 for (var radix = 2; radix < 37; radix++) { 12 for (var radix = 2; radix < 37; radix++) {
15 for (var i = 0; i < radix; i++) { 13 for (var i = 0; i < radix; i++) {
16 Expect.equals(expected[i], i.toRadixString(radix)); 14 Expect.equals(expected[i], i.toRadixString(radix));
17 } 15 }
18 } 16 }
19 17
20 var illegalRadices = [ -1, 0, 1, 37 ]; 18 var illegalRadices = [ -1, 0, 1, 37 ];
21 for (var radix in illegalRadices) { 19 for (var radix in illegalRadices) {
22 try { 20 try {
23 42.toRadixString(radix); 21 42.toRadixString(radix);
24 Expect.fail("Exception expected"); 22 Expect.fail("Exception expected");
25 } on ArgumentError catch (e) { 23 } on ArgumentError catch (e) {
26 // Nothing to do. 24 // Nothing to do.
27 } 25 }
28 } 26 }
29 } 27 }
OLDNEW
« no previous file with comments | « tests/corelib/int_parse_radix_test.dart ('k') | tests/corelib/is_operator_basic_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698