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

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