blob: a1d4e5b63f1c9c205fa626e0c714fce772df19ea [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 String toStringAsFixed(int fractionDigits)
* @description Checks that for a NaN the method returns 'NaN' regardless
* of the 'fractionDigits' value.
* @author pagolubev
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
double nan = 0 / 0;
for(int i = 0; i < 10; i++) {
Expect.equals('NaN', nan.toStringAsFixed(i));
}
}