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

Unified Diff: tests/lib/async/stream_timeout_test.dart

Issue 218273002: Upgrading tests with unittest deprecations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/lib/async/stream_timeout_test.dart
diff --git a/tests/lib/async/stream_timeout_test.dart b/tests/lib/async/stream_timeout_test.dart
index e06ba6764428b249e542ac6d7e606c1d3e769d49..eac7100511c5a07917bbe0a5e726c8d4a210f0c0 100644
--- a/tests/lib/async/stream_timeout_test.dart
+++ b/tests/lib/async/stream_timeout_test.dart
@@ -13,7 +13,7 @@ main() {
StreamController c = new StreamController();
Stream tos = c.stream.timeout(ms5);
expect(tos.isBroadcast, false);
- tos.handleError(expectAsync2((e, s) {
+ tos.handleError(expectAsync((e, s) {
expect(e, new isInstanceOf<TimeoutException>());
expect(s, null);
})).listen((v){ fail("Unexpected event"); });
@@ -27,9 +27,9 @@ main() {
sink.close();
});
expect(tos.isBroadcast, false);
- tos.listen(expectAsync1((v) { expect(v, 42); }),
- onError: expectAsync2((e, s) { expect(e, "ERROR"); }),
- onDone: expectAsync0((){}));
+ tos.listen(expectAsync((v) { expect(v, 42); }),
+ onError: expectAsync((e, s) { expect(e, "ERROR"); }),
+ onDone: expectAsync((){}));
});
test("stream no timeout", () {
@@ -41,7 +41,7 @@ main() {
ctr++;
},
onError: (e, s) { fail("No error expected"); },
- onDone: expectAsync0(() {
+ onDone: expectAsync(() {
expect(ctr, 2);
}));
expect(tos.isBroadcast, false);
@@ -57,7 +57,7 @@ main() {
expect(v, 42);
ctr++;
},
- onError: expectAsync2((e, s) {
+ onError: expectAsync((e, s) {
expect(ctr, 2);
expect(e, new isInstanceOf<TimeoutException>());
}));
@@ -68,7 +68,7 @@ main() {
StreamController c = new StreamController.broadcast();
Stream tos = c.stream.timeout(ms5);
expect(tos.isBroadcast, false);
- tos.handleError(expectAsync2((e, s) {
+ tos.handleError(expectAsync((e, s) {
expect(e, new isInstanceOf<TimeoutException>());
expect(s, null);
})).listen((v){ fail("Unexpected event"); });
@@ -78,7 +78,7 @@ main() {
StreamController c = new StreamController.broadcast();
Stream tos = c.stream.asBroadcastStream().timeout(ms5);
expect(tos.isBroadcast, false);
- tos.handleError(expectAsync2((e, s) {
+ tos.handleError(expectAsync((e, s) {
expect(e, new isInstanceOf<TimeoutException>());
expect(s, null);
})).listen((v){ fail("Unexpected event"); });
@@ -88,7 +88,7 @@ main() {
StreamController c = new StreamController();
Stream tos = c.stream.map((x) => 2 * x).timeout(ms5);
expect(tos.isBroadcast, false);
- tos.handleError(expectAsync2((e, s) {
+ tos.handleError(expectAsync((e, s) {
expect(e, new isInstanceOf<TimeoutException>());
expect(s, null);
})).listen((v){ fail("Unexpected event"); });
@@ -121,7 +121,7 @@ main() {
});
sw.start();
- tos.listen((v) { expect(v, 42);}, onDone: expectAsync0((){}));
+ tos.listen((v) { expect(v, 42);}, onDone: expectAsync((){}));
});
test("errors prevent timeout", () {
@@ -155,7 +155,7 @@ main() {
onError: (e, s) {
expect(e, "ERROR");
},
- onDone: expectAsync0((){}));
+ onDone: expectAsync((){}));
});
test("closing prevents timeout", () {
@@ -163,7 +163,7 @@ main() {
Stream tos = c.stream.timeout(twoSecs, onTimeout: (_) {
fail("Timeout not prevented by close");
});
- tos.listen((_) {}, onDone: expectAsync0((){}));
+ tos.listen((_) {}, onDone: expectAsync((){}));
c.close();
});
@@ -172,7 +172,7 @@ main() {
Stream tos = c.stream.timeout(ms5, onTimeout: (_) {
fail("Timeout not prevented by close");
});
- var subscription = tos.listen((_) {}, onDone: expectAsync0((){}));
+ var subscription = tos.listen((_) {}, onDone: expectAsync((){}));
subscription.pause();
new Timer(twoSecs, () {
c.close();

Powered by Google App Engine
This is Rietveld 408576698