blob: 53a5aa3d81b7b5eaed0c9a2d311370f986086173 [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 Completer()
* Create a new completer.
* @description Checks that [Completer] creates an object of class Completer.
* @author msyabro
*/
import "../../../Utils/expect.dart";
import "dart:async";
main() {
Completer completer = new Completer();
Expect.isTrue(completer is Completer);
}