| // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| // @dart = 2.9 |
| |
| /// @assertion Future addStream(Stream<List<int>> stream) |
| /// @description Checks that the [stream] can be added is another stream has been |
| /// already added. |
| /// @author iarkh@unipro.ru |
| |
| import "../../../Utils/expect.dart"; |
| import "dart:async"; |
| import "dart:io"; |
| |
| test(Stdout sink) async { |
| int called = 0; |
| Stream<List> stream1 = |
| new Stream<List<int>>.fromIterable([[1, 2], [12], [3, 22]]); |
| Stream<List> stream2 = new Stream<List<int>>.fromIterable([[0]]); |
| await sink.addStream(stream1); |
| await sink.addStream(stream2).then((x) { called++; }); |
| Expect.equals(1, called); |
| } |
| |
| main(List<String> args) { |
| test(stdout); |
| test(stderr); |
| } |