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

Side by Side Diff: tests/language/throw_expr_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/language/throw6_test.dart ('k') | tests/language/throw_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) 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 // Dart test program for testing throw expressions. 5 // Dart test program for testing throw expressions.
8 6
9 void test1() { 7 void test1() {
10 var x = 6; 8 var x = 6;
11 try { 9 try {
12 throw x = 10; 10 throw x = 10;
13 x = 0; 11 x = 0;
14 } catch(e) { 12 } catch(e) {
15 Expect.equals(10, e); 13 Expect.equals(10, e);
16 Expect.equals(10, x); 14 Expect.equals(10, x);
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 Expect.equals(77, e); 87 Expect.equals(77, e);
90 Expect.equals(11, x.qqq); 88 Expect.equals(11, x.qqq);
91 } 89 }
92 } 90 }
93 91
94 main() { 92 main() {
95 test1(); 93 test1();
96 test2(); 94 test2();
97 test3(); 95 test3();
98 } 96 }
OLDNEW
« no previous file with comments | « tests/language/throw6_test.dart ('k') | tests/language/throw_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698