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

Unified Diff: tests/language_strong/switch_label_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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 side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/switch_label_test.dart
diff --git a/tests/language_strong/switch_label_test.dart b/tests/language_strong/switch_label_test.dart
index 0ece0af7806725ba14c843b6c0f427c21a403463..290c84fcd57c3b9a4967380cef2cc5d16f9277ae 100644
--- a/tests/language_strong/switch_label_test.dart
+++ b/tests/language_strong/switch_label_test.dart
@@ -6,10 +6,9 @@
import "package:expect/expect.dart";
class Switcher {
+ Switcher() {}
- Switcher() { }
-
- say1 (sound) {
+ say1(sound) {
var x = 0;
switch (sound) {
MOO:
@@ -26,7 +25,7 @@ class Switcher {
return x;
}
- say2 (sound) {
+ say2(sound) {
var x = 0;
switch (sound) {
WOOF:
@@ -44,15 +43,17 @@ class Switcher {
}
// forward label to outer switch
- say3 (animal, sound) {
+ say3(animal, sound) {
var x = 0;
switch (animal) {
case "cow":
switch (sound) {
case "moo":
- x = 100; break;
+ x = 100;
+ break;
case "muh":
- x = 200; break;
+ x = 200;
+ break;
default:
continue NIX_UNDERSTAND;
}
@@ -85,7 +86,7 @@ class SwitchLabelTest {
Expect.equals(200, s.say2("moo"));
Expect.equals(200, s.say2("woof"));
- Expect.equals(300, s.say2("")); // Dead unicorn says nothing.
+ Expect.equals(300, s.say2("")); // Dead unicorn says nothing.
Expect.equals(100, s.say3("cow", "moo"));
Expect.equals(200, s.say3("cow", "muh"));

Powered by Google App Engine
This is Rietveld 408576698