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

Unified Diff: pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. Created 7 years, 2 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 | « pkg/unittest/lib/unittest.dart ('k') | runtime/bin/socket_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart
diff --git a/pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart b/pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart
index 2b8d343db2121d562e8ccca7bde32ee3c98b6cac..98f276b825f04a9d3b8d856f1266f0ea612247b4 100644
--- a/pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart
+++ b/pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart
@@ -9,12 +9,12 @@ import 'package:unittest/unittest.dart';
part 'unittest_test_utils.dart';
-var testName = 'test returning future using runAsync';
+var testName = 'test returning future using scheduleMicrotask';
var testFunction = (_) {
test("successful", () {
return _defer(() {
- runAsync(() {
+ scheduleMicrotask(() {
guardAsync(() {
expect(true, true);
});
@@ -24,7 +24,7 @@ var testFunction = (_) {
test("fail1", () {
var callback = expectAsync0((){});
return _defer(() {
- runAsync(() {
+ scheduleMicrotask(() {
guardAsync(() {
expect(true, false);
callback();
@@ -36,7 +36,7 @@ var testFunction = (_) {
var callback = expectAsync0((){});
var excesscallback = expectAsync0((){});
return _defer(() {
- runAsync(() {
+ scheduleMicrotask(() {
guardAsync(() {
excesscallback();
excesscallback();
@@ -48,7 +48,7 @@ var testFunction = (_) {
test("fail2", () {
var callback = expectAsync0((){});
return _defer(() {
- runAsync(() {
+ scheduleMicrotask(() {
guardAsync(() {
fail('failure');
callback();
@@ -60,7 +60,7 @@ var testFunction = (_) {
var callback = expectAsync0((){});
var excesscallback = expectAsync0((){});
return _defer(() {
- runAsync(() {
+ scheduleMicrotask(() {
guardAsync(() {
excesscallback();
excesscallback();
« no previous file with comments | « pkg/unittest/lib/unittest.dart ('k') | runtime/bin/socket_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698