blob: 7f9ea2937bb85cbbd8b07a06fc908f19602c3d8f [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 double INFINITY
/// @description Comparing INFINITY with 0
/// @author hlodvig
import "../../../Utils/expect.dart";
main() {
Expect.isTrue((double.infinity > 0));
Expect.isFalse((double.infinity < 0));
Expect.isTrue((double.infinity >= 0));
Expect.isFalse((double.infinity <= 0));
Expect.isFalse((double.infinity == 0));
}