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

Side by Side Diff: tests/language/exception_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/exception_identity_test.dart ('k') | tests/language/execute_finally1_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
5 import "package:expect/expect.dart";
6
7 class ExceptionTest { 4 class ExceptionTest {
8 static testMain() { 5 static testMain() {
9 int i = 0; 6 int i = 0;
10 try { 7 try {
11 throw "Hello"; 8 throw "Hello";
12 } on String catch (s) { 9 } on String catch (s) {
13 print(s); 10 print(s);
14 i += 10; 11 i += 10;
15 } 12 }
16 13
(...skipping 16 matching lines...) Expand all
33 } catch (x) { 30 } catch (x) {
34 correctCatch = false; 31 correctCatch = false;
35 } 32 }
36 Expect.isTrue(correctCatch); 33 Expect.isTrue(correctCatch);
37 } 34 }
38 } 35 }
39 36
40 main() { 37 main() {
41 ExceptionTest.testMain(); 38 ExceptionTest.testMain();
42 } 39 }
OLDNEW
« no previous file with comments | « tests/language/exception_identity_test.dart ('k') | tests/language/execute_finally1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698