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

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

Issue 25094002: Adapt streams for additional stackTrace argument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove types in closures. 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 | « tests/lib/async/stack_trace24_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/stack_trace25_test.dart
diff --git a/tests/lib/async/stack_trace11_test.dart b/tests/lib/async/stack_trace25_test.dart
similarity index 65%
copy from tests/lib/async/stack_trace11_test.dart
copy to tests/lib/async/stack_trace25_test.dart
index d72b50f36cadfac72d7fe8cee52407591208612f..75799ef23a9534b35e6b0eb606869ff2bdfa486c 100644
--- a/tests/lib/async/stack_trace11_test.dart
+++ b/tests/lib/async/stack_trace25_test.dart
@@ -16,10 +16,17 @@ StackTrace captureStackTrace() {
main() {
StackTrace trace = captureStackTrace();
+ var controller;
+ controller = new StreamController(onListen: () {
+ controller.addError("error", trace);
+ controller.close();
+ });
asyncStart();
- var f = new Future.error(499, trace);
- f.then((_) { throw "Unreachable"; },
+ var iterator = new StreamIterator(controller.stream);
+ var future = iterator.moveNext();
+ future.then((_) { throw "unreachable"; },
onError: (e, st) {
+ Expect.equals("error", e);
Expect.identical(trace, st);
asyncEnd();
});
« no previous file with comments | « tests/lib/async/stack_trace24_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698