mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
b81f12a549
Change-Id: I0fa2ee2561dd0bc399d88868d790d56e6df3c94d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134940 Commit-Queue: Bob Nystrom <rnystrom@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
28 lines
767 B
Dart
28 lines
767 B
Dart
// Copyright (c) 2015, 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.
|
|
|
|
import "dart:async";
|
|
import "package:expect/expect.dart";
|
|
import "package:async_helper/async_helper.dart";
|
|
|
|
expectList(actualStream, expectedList) {
|
|
return actualStream.toList().then((v) {
|
|
Expect.listEquals(expectedList, v);
|
|
});
|
|
}
|
|
|
|
Stream<int> makeStream(int n) async* {
|
|
for (int i = 0; i < n; i++) yield i;
|
|
}
|
|
|
|
main() {
|
|
fivePartialSums(Stream<int> s) async* {
|
|
var r = 0;
|
|
await for (var v in s.take(5)) yield r += v;
|
|
}
|
|
|
|
asyncStart();
|
|
expectList(fivePartialSums(makeStream(10)), [0, 1, 3, 6, 10])
|
|
.then(asyncSuccess);
|
|
}
|