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

Side by Side Diff: tests/language/switch_scope_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/switch_label_test.dart ('k') | tests/language/switch_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 // Test that a new scope is introduced for each switch case. 4 // Test that a new scope is introduced for each switch case.
5 5
6 import "package:expect/expect.dart";
7
8 class SwitchScopeTest { 6 class SwitchScopeTest {
9 static testMain() { 7 static testMain() {
10 switch(1) { 8 switch(1) {
11 case 1: 9 case 1:
12 final v = 1; 10 final v = 1;
13 break; 11 break;
14 case 2: 12 case 2:
15 final v = 2; 13 final v = 2;
16 Expect.equals(2, v); 14 Expect.equals(2, v);
17 break; 15 break;
18 default: 16 default:
19 final v = 3; 17 final v = 3;
20 break; 18 break;
21 } 19 }
22 } 20 }
23 } 21 }
24 22
25 main() { 23 main() {
26 SwitchScopeTest.testMain(); 24 SwitchScopeTest.testMain();
27 } 25 }
OLDNEW
« no previous file with comments | « tests/language/switch_label_test.dart ('k') | tests/language/switch_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698