OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 import 'dart:async'; |
| 6 |
| 7 import 'package:convert/convert.dart'; |
| 8 import 'package:test/test.dart'; |
| 9 |
| 10 void main() { |
| 11 var sink; |
| 12 setUp(() { |
| 13 sink = new AccumulatorSink<int>(); |
| 14 }); |
| 15 |
| 16 test("provides access to events as they're added", () { |
| 17 expect(sink.events, isEmpty); |
| 18 |
| 19 sink.add(1); |
| 20 expect(sink.events, equals([1])); |
| 21 |
| 22 sink.add(2); |
| 23 expect(sink.events, equals([1, 2])); |
| 24 |
| 25 sink.add(3); |
| 26 expect(sink.events, equals([1, 2, 3])); |
| 27 }); |
| 28 |
| 29 test("indicates whether the sink is closed", () { |
| 30 expect(sink.isClosed, isFalse); |
| 31 sink.close(); |
| 32 expect(sink.isClosed, isTrue); |
| 33 }); |
| 34 |
| 35 test("doesn't allow add() to be called after close()", () { |
| 36 sink.close(); |
| 37 expect(() => sink.add(1), throwsStateError); |
| 38 }); |
| 39 } |
OLD | NEW |