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

Side by Side Diff: tests/language/switch_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/switch_scope_test.dart ('k') | tests/language/temp_mangling_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 // Test switch statement. 4 // Test switch statement.
5 5
6 import "package:expect/expect.dart";
7
6 class Switcher { 8 class Switcher {
7 9
8 Switcher() { } 10 Switcher() { }
9 11
10 test1 (val) { 12 test1 (val) {
11 var x = 0; 13 var x = 0;
12 switch (val) { 14 switch (val) {
13 case 1: 15 case 1:
14 x = 100; break; 16 x = 100; break;
15 case 2: 17 case 2:
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 testSwitchIntExpression(2, 11); 118 testSwitchIntExpression(2, 11);
117 testSwitchIntExpression(3, 11); 119 testSwitchIntExpression(3, 11);
118 testSwitchIntExpression(4, 21); 120 testSwitchIntExpression(4, 21);
119 testSwitchIntExpression(5, 21); 121 testSwitchIntExpression(5, 21);
120 testSwitchIntExpression(6, 31); 122 testSwitchIntExpression(6, 31);
121 testSwitchIntExpression(7, null); 123 testSwitchIntExpression(7, null);
122 124
123 testSwitchBool(true, 12); 125 testSwitchBool(true, 12);
124 testSwitchBool(false, 22); 126 testSwitchBool(false, 22);
125 } 127 }
OLDNEW
« no previous file with comments | « tests/language/switch_scope_test.dart ('k') | tests/language/temp_mangling_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698