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

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

Issue 326913002: Make dart2js unittests async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 6 years, 6 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
« no previous file with comments | « tests/compiler/dart2js/boolify_test.dart ('k') | tests/compiler/dart2js/builtin_interceptor_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/builtin_equals_test.dart
diff --git a/tests/compiler/dart2js/builtin_equals_test.dart b/tests/compiler/dart2js/builtin_equals_test.dart
index 3b1807ae5c744936368d5f4ed7233a3c4aa18893..57656c0f5cdedace1148f399fab4709bbe625fb3 100644
--- a/tests/compiler/dart2js/builtin_equals_test.dart
+++ b/tests/compiler/dart2js/builtin_equals_test.dart
@@ -2,7 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-import "package:expect/expect.dart";
+import 'package:expect/expect.dart';
+import 'package:async_helper/async_helper.dart';
import 'compiler_helper.dart';
const String TEST = r"""
@@ -17,10 +18,12 @@ foo() {
""";
main() {
- String generated = compile(TEST, entry: 'foo', enableTypeAssertions: true);
- Expect.isTrue(!generated.contains('eqB'));
+ asyncTest(() => compile(TEST, entry: 'foo', enableTypeAssertions: true,
+ check: (String generated) {
+ Expect.isTrue(!generated.contains('eqB'));
- RegExp regexp = new RegExp('==');
- Iterator<Match> matches = regexp.allMatches(generated).iterator;
- checkNumberOfMatches(matches, 4);
+ RegExp regexp = new RegExp('==');
+ Iterator<Match> matches = regexp.allMatches(generated).iterator;
+ checkNumberOfMatches(matches, 4);
+ }));
}
« no previous file with comments | « tests/compiler/dart2js/boolify_test.dart ('k') | tests/compiler/dart2js/builtin_interceptor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698