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

Unified Diff: tests/corelib/hash_set_type_check_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/hash_set_type_check_test.dart
diff --git a/tests/corelib/hash_set_type_check_test.dart b/tests/corelib/hash_set_type_check_test.dart
index 1e21c95087f13830c600c75a6500c0220c9fca5e..27c7908423e56c73b982c5f9b24b7a00345b66de 100644
--- a/tests/corelib/hash_set_type_check_test.dart
+++ b/tests/corelib/hash_set_type_check_test.dart
@@ -5,6 +5,7 @@
// Tests of hash set type checking.
library hash_set_type_check_test;
+
import "package:expect/expect.dart";
import 'dart:collection';
@@ -14,14 +15,12 @@ testSet(Set<String> newSet()) {
Expect.isNull(s.lookup(1));
}
-
void testIdentitySet(Set create()) {
Set<String> s = create();
Expect.throws(() => s.add(1), (e) => e is Error);
Expect.isNull(s.lookup(1));
}
-
bool get inCheckedMode {
try {
var i = 1;
@@ -32,7 +31,6 @@ bool get inCheckedMode {
return false;
}
-
void main() {
if (!inCheckedMode) return;
@@ -42,9 +40,8 @@ void main() {
testIdentitySet(() => new Set<String>.identity());
testIdentitySet(() => new HashSet<String>.identity());
testIdentitySet(() => new LinkedHashSet<String>.identity());
- testIdentitySet(() => new HashSet<String>(equals: (x, y) => identical(x, y),
- hashCode: (x) => identityHashCode(x)));
- testIdentitySet(
- () => new LinkedHashSet<String>(equals: (x, y) => identical(x, y),
- hashCode: (x) => identityHashCode(x)));
+ testIdentitySet(() => new HashSet<String>(
+ equals: (x, y) => identical(x, y), hashCode: (x) => identityHashCode(x)));
+ testIdentitySet(() => new LinkedHashSet<String>(
+ equals: (x, y) => identical(x, y), hashCode: (x) => identityHashCode(x)));
}

Powered by Google App Engine
This is Rietveld 408576698