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

Unified Diff: tests/language/setter1_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/setter1_test.dart
diff --git a/tests/language/setter1_test.dart b/tests/language/setter1_test.dart
index 5f8b4a46a4cd81d6d61fb57e8906d64f361cf582..ffcb9e01acbe61233d9babb6c9bf09b94ab6ae83 100644
--- a/tests/language/setter1_test.dart
+++ b/tests/language/setter1_test.dart
@@ -7,11 +7,12 @@
import "package:expect/expect.dart";
class First {
- First(int val) : a_ = val { }
+ First(int val) : a_ = val {}
void testMethod() {
a = 20;
}
+
static void testStaticMethod() {
b = 20;
}
@@ -19,6 +20,7 @@ class First {
int get a {
return a_;
}
+
void set a(int val) {
a_ = a_ + val;
}
@@ -26,6 +28,7 @@ class First {
static int get b {
return b_;
}
+
static void set b(int val) {
b_ = val;
}
@@ -34,12 +37,11 @@ class First {
static int b_;
}
-
class Second {
static int c;
int a_;
- Second(int value) : a_ = value { }
+ Second(int value) : a_ = value {}
void testMethod() {
a = 20;
@@ -57,6 +59,7 @@ class Second {
int get a {
return a_;
}
+
void set a(int value) {
a_ = a_ + value;
}
@@ -64,12 +67,12 @@ class Second {
static void set b(int value) {
Second.c = value;
}
+
static int get d {
return Second.c;
}
}
-
class Setter1Test {
static testMain() {
First obj1 = new First(10);
@@ -92,7 +95,6 @@ class Setter1Test {
}
}
-
main() {
Setter1Test.testMain();
}

Powered by Google App Engine
This is Rietveld 408576698