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

Unified Diff: tests/compiler/dart2js/enumset_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js/enumset_test.dart
diff --git a/tests/compiler/dart2js/enumset_test.dart b/tests/compiler/dart2js/enumset_test.dart
index 66fad2e38e4b8e0ec7e4977fc92bbca22547af56..92ab39cd44df356fce14254a74d51ddddd39fb00 100644
--- a/tests/compiler/dart2js/enumset_test.dart
+++ b/tests/compiler/dart2js/enumset_test.dart
@@ -7,18 +7,22 @@ library enumset.test;
import 'package:compiler/src/util/enumset.dart';
import 'package:expect/expect.dart';
-enum Enum { A, B, C, D, E, F, }
+enum Enum {
+ A,
+ B,
+ C,
+ D,
+ E,
+ F,
+}
main() {
testAddRemoveContains();
testConstructorsIntersects();
}
-
-void checkEnumSet(EnumSet<Enum> enumSet,
- int expectedValue,
- List<Enum> expectedValues,
- String expectedToString) {
+void checkEnumSet(EnumSet<Enum> enumSet, int expectedValue,
+ List<Enum> expectedValues, String expectedToString) {
Expect.equals(expectedValue, enumSet.value,
"Unexpected EnumSet.value for ${enumSet.iterable(Enum.values)}");
Expect.listEquals(expectedValues, enumSet.iterable(Enum.values).toList(),
@@ -28,7 +32,9 @@ void checkEnumSet(EnumSet<Enum> enumSet,
Expect.equals(expectedToString, enumSet.toString(),
"Unexpected EnumSet.toString for ${enumSet.iterable(Enum.values)}");
for (Enum value in Enum.values) {
- Expect.equals(expectedValues.contains(value), enumSet.contains(value),
+ Expect.equals(
+ expectedValues.contains(value),
+ enumSet.contains(value),
"Unexpected EnumSet.contains for $value in "
"${enumSet.iterable(Enum.values)}");
}
@@ -37,9 +43,8 @@ void checkEnumSet(EnumSet<Enum> enumSet,
void testAddRemoveContains() {
EnumSet<Enum> enumSet = new EnumSet<Enum>();
- void check(int expectedValue,
- List<Enum> expectedValues,
- String expectedToString) {
+ void check(
+ int expectedValue, List<Enum> expectedValues, String expectedToString) {
checkEnumSet(enumSet, expectedValue, expectedValues, expectedToString);
}
@@ -84,21 +89,17 @@ void testConstructorsIntersects() {
EnumSet<Enum> emptyC = const EnumSet<Enum>.fixed(0);
EnumSet<Enum> emptyD = new EnumSet<Enum>.fixed(0);
-
void checkIntersects(EnumSet<Enum> a, EnumSet<Enum> b, bool expectedValue) {
- Expect.equals(expectedValue, a.intersects(b),
- "Unexpected intersects of $a and $b");
+ Expect.equals(
+ expectedValue, a.intersects(b), "Unexpected intersects of $a and $b");
Expect.equals(a.intersects(b), b.intersects(a),
"Unsymmetric intersects of $a and $b");
}
void check(EnumSet<Enum> a, EnumSet<Enum> b) {
- Expect.equals(a.value, b.value,
- "Unexpected values of $a and $b");
- Expect.equals(a.hashCode, b.hashCode,
- "Unexpected hash codes of $a and $b");
- Expect.equals(a, b,
- "Unexpected equality of $a and $b");
+ Expect.equals(a.value, b.value, "Unexpected values of $a and $b");
+ Expect.equals(a.hashCode, b.hashCode, "Unexpected hash codes of $a and $b");
+ Expect.equals(a, b, "Unexpected equality of $a and $b");
checkIntersects(a, b, !a.isEmpty);
}
@@ -122,7 +123,9 @@ void testConstructorsIntersects() {
check(singleA, singleF);
EnumSet<Enum> multiA = new EnumSet<Enum>()
- ..add(Enum.A)..add(Enum.D)..add(Enum.F);
+ ..add(Enum.A)
+ ..add(Enum.D)
+ ..add(Enum.F);
EnumSet<Enum> multiB = new EnumSet<Enum>.fromValue(41);
EnumSet<Enum> multiC = const EnumSet<Enum>.fixed(41);
EnumSet<Enum> multiD = new EnumSet<Enum>.fixed(41);
@@ -147,4 +150,4 @@ void testConstructorsIntersects() {
checkIntersects(singleA, multi2, true);
checkIntersects(multiA, multi2, true);
-}
+}
« no previous file with comments | « tests/compiler/dart2js/emit_const_fields_test.dart ('k') | tests/compiler/dart2js/erroneous_element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698