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

Side by Side Diff: tests/language/switch_label_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_fallthru_test.dart ('k') | tests/language/switch_scope_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 switch statement using labels. 4 // Test switch statement using labels.
5 5
6 import "package:expect/expect.dart";
7
6 class Switcher { 8 class Switcher {
7 9
8 Switcher() { } 10 Switcher() { }
9 11
10 say1 (sound) { 12 say1 (sound) {
11 var x = 0; 13 var x = 0;
12 switch (sound) { 14 switch (sound) {
13 MOO: 15 MOO:
14 case "moo": 16 case "moo":
15 x = 100; 17 x = 100;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 Expect.equals(300, s.say3("dog", "woof")); 93 Expect.equals(300, s.say3("dog", "woof"));
92 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton? 94 Expect.equals(400, s.say3("dog", "boj")); // Ĉu vi parolas Esperanton?
93 Expect.equals(400, s.say3("unicorn", "")); // Still dead. 95 Expect.equals(400, s.say3("unicorn", "")); // Still dead.
94 Expect.equals(500, s.say3("angry bird", "whoooo")); 96 Expect.equals(500, s.say3("angry bird", "whoooo"));
95 } 97 }
96 } 98 }
97 99
98 main() { 100 main() {
99 SwitchLabelTest.testMain(); 101 SwitchLabelTest.testMain();
100 } 102 }
OLDNEW
« no previous file with comments | « tests/language/switch_fallthru_test.dart ('k') | tests/language/switch_scope_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698