blob: 60bb6e7fa4e0b2b89e8cfe138232da281fd2b6b0 [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 abstract double truncateToDouble()
* Returns the integer obtained by discarding any fractional digits from this.
* @description Checks truncation of infinity.
* @author pagolubev
*/
import "../../../Utils/expect.dart";
main() {
double inf = double.infinity;
Expect.equals(inf, inf.truncateToDouble());
Expect.equals(-inf, (-inf).truncateToDouble());
}