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

Side by Side Diff: tests/standalone/io/test_extension_tester.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 library test_extension_test; 5 library test_extension_test;
6 6
7 import "test_extension.dart"; 7 import "test_extension.dart";
8 8
9 class Expect {
10 static void equals(expected, actual, [msg]) {
11 if (expected != actual) {
12 if (msg == null) msg = "Expected: $expected. Actual: $actual";
13 throw new RuntimeError(msg);
14 }
15 }
16
17 static void isNull(x, [msg]) {
18 if (x != null) {
19 if (msg != null) msg = "$x not null";
20 throw new RuntimeError(msg);
21 }
22 }
23 }
24
25 main() { 9 main() {
26 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()'); 10 Expect.equals('cat 13', new Cat(13).toString(), 'new Cat(13).toString()');
27 11
28 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)'); 12 Expect.equals(3, Cat.ifNull(null, 3), 'Cat.ifNull(null, 3)');
29 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)'); 13 Expect.equals(4, Cat.ifNull(4, null), 'Cat.ifNull(4, null)');
30 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)'); 14 Expect.equals(5, Cat.ifNull(5, 9), 'Cat.ifNull(5, 9)');
31 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)'); 15 Expect.isNull(Cat.ifNull(null, null), 'Cat.ifNull(null, null)');
32 16
33 try { 17 try {
34 Cat.throwMeTheBall("ball"); 18 Cat.throwMeTheBall("ball");
35 } on String catch (e) { 19 } on String catch (e) {
36 Expect.equals("ball", e); 20 Expect.equals("ball", e);
37 } 21 }
38 } 22 }
OLDNEW
« no previous file with comments | « tests/standalone/io/test_extension_test.dart ('k') | tests/standalone/io/test_runner_exit_code_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698