blob: b1e8da35d86a9260419a362aa45c2f3d69f78a17 [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 Future then(onValue(T value), {onError(Object asyncError)})
* When this future completes with a value, then onValue is called with this value.
* If this future is already completed then the invocation of onValue is delayed until
* the next event-loop iteration.
* Returns a new Future f which is completed with the result of invoking onValue
* (if this completes with a value) or onError (if this completes with an error).
* @description Checks that [onValue] is called when a future is complete.
* @author msyabro
* @reviewer kaigorodov
*/
import "dart:async";
import "../../../Utils/async_utils.dart";
import "../../../Utils/expect.dart";
check(value) {
Completer completer = new Completer();
Future f = completer.future;
asyncStart();
f.then((_) {
Expect.isTrue(completer.isCompleted);
asyncEnd();
});
completer.complete(value);
}
main() {
check(0);
check('');
check(false);
check([]);
check(new Object());
check(new Exception());
}