Chromium Code Reviews| Index: tests/language/equality_test.dart |
| =================================================================== |
| --- tests/language/equality_test.dart (revision 0) |
| +++ tests/language/equality_test.dart (revision 0) |
| @@ -0,0 +1,29 @@ |
| +// Copyright (c) 2012, 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. |
| + |
| + |
| +class A { |
| + bool _result; |
| + A(this._result); |
| + operator ==(x) { return _result; } |
| +} |
| + |
| +tests() { |
| + var alwaysTrue = new A(true); |
| + var alwaysFalse = new A(false); |
| + Expect.isFalse(alwaysFalse == alwaysFalse); |
| + Expect.isTrue(alwaysFalse != alwaysFalse); |
| + Expect.isTrue(alwaysTrue == alwaysTrue); |
| + Expect.isTrue(alwaysTrue == 5); |
| + Expect.isFalse(alwaysTrue == null); |
| + Expect.isFalse(null == alwaysTrue); |
| + Expect.isTrue(alwaysTrue != null); |
| + Expect.isTrue(null != alwaysTrue); |
| + Expect.isTrue(null == null); |
| + Expect.isFalse(null != null); |
|
sra1
2012/08/17 01:34:08
Should also compare cases where both sides are exp
|
| +} |
| + |
| +main() { |
| + for (int i = 0; i < 1000; i++) tests(); |
| +} |