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

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

Issue 2656743002: 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
« no previous file with comments | « tests/lib/async/stream_state_helper.dart ('k') | tests/lib/async/stream_state_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 event/callback protocol of the stream implementations. 5 // Test the event/callback protocol of the stream implementations.
6 // Uses a non-zero timer so it fails on d8. 6 // Uses a non-zero timer so it fails on d8.
7 7
8 library stream_state_nonzero_timer_test; 8 library stream_state_nonzero_timer_test;
9 9
10 import "dart:async"; 10 import "dart:async";
11 import "package:unittest/unittest.dart"; 11 import "package:test/test.dart";
12 import "stream_state_helper.dart"; 12 import "stream_state_helper.dart";
13 13
14 const ms5 = const Duration(milliseconds: 5); 14 const ms5 = const Duration(milliseconds: 5);
15 15
16 // Testing pause/resume, some with non-zero duration. This only makes sense for 16 // Testing pause/resume, some with non-zero duration. This only makes sense for
17 // non-broadcast streams, since broadcast stream subscriptions handle their 17 // non-broadcast streams, since broadcast stream subscriptions handle their
18 // own pauses. 18 // own pauses.
19 19
20 main() { 20 main() {
21 var p = "StreamController"; 21 var p = "StreamController";
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 t.pause(); 93 t.pause();
94 t.resume(); 94 t.resume();
95 t.close(); 95 t.close();
96 }) 96 })
97 ..expectCancel() 97 ..expectCancel()
98 ..expectDone(t.terminate); 98 ..expectDone(t.terminate);
99 t..listen() 99 t..listen()
100 ..add(42); 100 ..add(42);
101 }); 101 });
102 } 102 }
OLDNEW
« no previous file with comments | « tests/lib/async/stream_state_helper.dart ('k') | tests/lib/async/stream_state_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698