blob: 4a4b2c692c7b8edd607be065fff7e0acb55458bd [file] [log] [blame]
// Copyright (c) 2011, 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.
/// @assertion Stream<T> stream
/// The stream that this controller is controlling.
/// @description Checks Stream interface implementation
/// @author a.semenov@unipro.ru
import "dart:async";
import "../Stream/allTests_A01.lib.dart";
Stream<T> create<T>(Iterable<T> data, {bool isError(T element)?}) {
StreamController<T> sc = new StreamController<T>();
for (T e in data) {
if (isError != null && isError(e)) {
if (e is Object) {
sc.addError(e);
}
} else {
sc.add(e);
}
}
new Future(() => sc.close()); // close stream controller later
return sc.stream;
}
main() {
test(create);
}