blob: a518022bd1271ecc82f7cdc2483704b7e72ba5c9 [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 abstract void complete([T value])
* Completes future with the supplied values.
* If the value is itself a future, the completer will wait for that future to
* complete, and complete with the same result, whether it is a success or an
* error.
* All listeners on the future are informed about the value.
* @description Checks that all listeners on the future are informed.
* @author kaigorodov
*/
import "dart:async";
import "../../../Utils/async_utils.dart";
import "../../../Utils/expect.dart";
int N=10;
const v=99;
List futures=[];
int count=0;
main() {
var completer = new Completer();
var future = completer.future;
for (int k=0; k<N; k++) {
asyncStart();
futures.add(future.then((fValue) {
Expect.equals(v, fValue);
++count;
asyncEnd();
}));
}
Future.wait(futures).whenComplete(() => Expect.equals(N, count));
completer.complete(v);
}