Files
sdk/tests/language_2/null_is_test.dart
T
Ben Konyi 24e40a0f61 Migrated test block 139 to Dart 2.0.
Did not migrate null_bottom / null_is_bottom type tests. Modified
null_test to not run some mirrors related checks on platforms that don't
support mirrors.

Bug:
Change-Id: I7fce784f537cc298e2945a32073700083d9275f8
Reviewed-on: https://dart-review.googlesource.com/7848
Commit-Queue: Ben Konyi <bkonyi@google.com>
Reviewed-by: Phil Quitslund <pquitslund@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
2017-09-23 00:06:38 +00:00

47 lines
1.2 KiB
Dart

// 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.
import "package:expect/expect.dart";
main() {
Expect.isTrue(null is Object);
Expect.isTrue(null is Null);
Expect.isFalse(null is int);
Expect.isFalse(null is bool);
Expect.isFalse(null is num);
Expect.isFalse(null is String);
Expect.isFalse(null is List);
Expect.isFalse(null is Expect);
test(null);
Expect.isFalse(1 is Null);
Expect.isFalse("1" is Null);
Expect.isFalse(true is Null);
Expect.isFalse(false is Null);
Expect.isFalse(new Object() is Null);
testNegative(1);
testNegative("1");
testNegative(true);
testNegative(false);
testNegative(new Object());
}
test(n) {
// Test where the argument is not a compile-time constant.
Expect.isTrue(n is Object);
Expect.isTrue(n is Null);
Expect.isFalse(n is int);
Expect.isFalse(n is bool);
Expect.isFalse(n is num);
Expect.isFalse(n is String);
Expect.isFalse(n is List);
Expect.isFalse(n is Expect);
}
testNegative(n) {
Expect.isFalse(n is Null);
}