blob: 8957dd83e77bc1fdd9265db4cf8275fb79f72bf6 [file] [log] [blame]
// Copyright (c) 2016, 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 EventSink()
///
/// @description Checks that an istance of EventSink may be created.
/// @author ngl@unipro.ru
library EventSink_A01_t01;
import "dart:async";
import "../../../Utils/expect.dart";
test(EventSink create()) {
var es = create();
Expect.isTrue(es is EventSink);
Expect.runtimeIsType<EventSink>(es);
}