blob: 1bbf4e4e8e718688c6de16c5c9c801f8f237f271 [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 Future then(dynamic onValue(T value), {Function onError})
* Register callbacks to be called when this future completes.
* When this future completes with a value, the onValue callback will be
* called with that value. If this future is already completed, the callback
* will not be called immediately, but will be scheduled in a later microtask.
* . . .
* Returns a new Future which is completed with the result of the call to
* onValue (if this future completes with a value) or to onError (if this
* future completes with an error).
* @description Checks that [onValue] is called when a future is complete.
* @author msyabro
*/
import "dart:async";
import "../../../Utils/expect.dart";
void check(Object 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());
}