blob: ad4dfa65c513855f2524ad76165667f01fcbd127 [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 bool operator ==(other)
/// The default behavior for all Objects is to return true if and only if this
/// and other are the same object.
///
/// @description Checks the equality operator.
/// @author ngl@unipro.ru
library equality_operator_A01_t01;
import "dart:async";
import "../../../Utils/expect.dart";
test(StreamConsumer create()) {
StreamConsumer sc1 = create();
StreamConsumer sc2 = create();
StreamConsumer sc3 = sc1;
Expect.isFalse(sc1 == sc2);
Expect.isTrue(sc1 == sc3);
}