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

Unified Diff: tests/corelib_strong/iterable_element_at_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/corelib_strong/iterable_element_at_test.dart
diff --git a/tests/corelib_strong/iterable_element_at_test.dart b/tests/corelib_strong/iterable_element_at_test.dart
index 5f46958244f099e2bfade726c13af901b23c9f9f..364e94a5c8cf81566b412861965322547f7dc73d 100644
--- a/tests/corelib_strong/iterable_element_at_test.dart
+++ b/tests/corelib_strong/iterable_element_at_test.dart
@@ -9,24 +9,22 @@ main() {
List<int> list2 = const <int>[4, 5, 6];
List<String> list3 = <String>[];
Set<int> set1 = new Set<int>();
- set1..add(11)
- ..add(12)
- ..add(13);
+ set1..add(11)..add(12)..add(13);
Set set2 = new Set();
Expect.equals(1, list1.elementAt(0));
Expect.equals(2, list1.elementAt(1));
Expect.equals(3, list1.elementAt(2));
- Expect.throws(() => list1.elementAt("2"),
- (e) => e is ArgumentError || e is TypeError);
+ Expect.throws(
+ () => list1.elementAt("2"), (e) => e is ArgumentError || e is TypeError);
Expect.throws(() => list1.elementAt(-1), (e) => e is ArgumentError);
Expect.throws(() => list1.elementAt(3), (e) => e is RangeError);
Expect.equals(4, list2.elementAt(0));
Expect.equals(5, list2.elementAt(1));
Expect.equals(6, list2.elementAt(2));
- Expect.throws(() => list2.elementAt("2"),
- (e) => e is ArgumentError || e is TypeError);
+ Expect.throws(
+ () => list2.elementAt("2"), (e) => e is ArgumentError || e is TypeError);
Expect.throws(() => list2.elementAt(-1), (e) => e is ArgumentError);
Expect.throws(() => list2.elementAt(3), (e) => e is RangeError);
@@ -36,8 +34,8 @@ main() {
Expect.throws(() => set1.elementAt(-1), (e) => e is ArgumentError);
Expect.throws(() => set1.elementAt(3), (e) => e is RangeError);
- Expect.throws(() => set2.elementAt("2"),
- (e) => e is ArgumentError || e is TypeError);
+ Expect.throws(
+ () => set2.elementAt("2"), (e) => e is ArgumentError || e is TypeError);
Expect.throws(() => set2.elementAt(-1), (e) => e is ArgumentError);
Expect.throws(() => set2.elementAt(0), (e) => e is RangeError);
Expect.throws(() => set2.elementAt(1), (e) => e is RangeError);

Powered by Google App Engine
This is Rietveld 408576698