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

Side by Side Diff: tests/lib/async/stream_subscription_cancel_test.dart

Issue 2656503004: Revert "Remove package:unittest from some tests" (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Test the StreamSubscription.cancel return Future. 5 // Test the StreamSubscription.cancel return Future.
6 library stream_subscription_cancel; 6 library stream_subscription_cancel;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 import 'package:test/test.dart'; 9 import 'package:unittest/unittest.dart';
10 10
11 void main() { 11 void main() {
12 test('subscription.cancel', () { 12 test('subscription.cancel', () {
13 var completer = new Completer(); 13 var completer = new Completer();
14 StreamController controller = new StreamController( 14 StreamController controller = new StreamController(
15 onCancel: () => completer.future); 15 onCancel: () => completer.future);
16 16
17 bool done = false; 17 bool done = false;
18 expect(controller.stream.listen(null).cancel().then((_) => done), 18 expect(controller.stream.listen(null).cancel().then((_) => done),
19 completion(equals(true))); 19 completion(equals(true)));
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 var future = controller.stream.where((x) => true).listen(null).cancel(); 313 var future = controller.stream.where((x) => true).listen(null).cancel();
314 314
315 expect(future.then((_) => done = true), completion(equals(true))); 315 expect(future.then((_) => done = true), completion(equals(true)));
316 316
317 Timer.run(() { 317 Timer.run(() {
318 expect(done, isFalse); 318 expect(done, isFalse);
319 completer.complete(); 319 completer.complete();
320 }); 320 });
321 }); 321 });
322 } 322 }
OLDNEW
« no previous file with comments | « tests/lib/async/stream_subscription_as_future_test.dart ('k') | tests/lib/async/stream_transform_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698