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

Unified Diff: tests/language/generic_parameterized_extends_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/generic_parameterized_extends_test.dart
diff --git a/tests/language/generic_parameterized_extends_test.dart b/tests/language/generic_parameterized_extends_test.dart
index e275dd3266c553b49f9f87ddc2e0b678a839d4cf..0d85fe92e004bf1f9be32bfb1a3e9ec3b82fab4b 100644
--- a/tests/language/generic_parameterized_extends_test.dart
+++ b/tests/language/generic_parameterized_extends_test.dart
@@ -7,7 +7,9 @@
import "package:expect/expect.dart";
class A<T> {}
+
class B<T1, T2 extends A<T1>> {}
+
class C<T1 extends A<T2>, T2> {}
main() {
@@ -17,13 +19,13 @@ main() {
Expect.isTrue(a is Object);
Expect.isTrue(a is A<Object>);
Expect.isTrue(a is A<String>);
- Expect.isTrue(a is !A<int>);
+ Expect.isTrue(a is! A<int>);
Expect.isTrue(b is Object);
Expect.isTrue(b is B<Object, A<Object>>);
Expect.isTrue(b is B<String, A<String>>);
- Expect.isTrue(b is !B<int, A<int>>);
+ Expect.isTrue(b is! B<int, A<int>>);
Expect.isTrue(c is Object);
Expect.isTrue(c is C<A<Object>, Object>);
Expect.isTrue(c is C<A<String>, String>);
- Expect.isTrue(c is !C<A<int>, int>);
+ Expect.isTrue(c is! C<A<int>, int>);
}

Powered by Google App Engine
This is Rietveld 408576698