blob: 8013eb1aa6b43b18d82ce6c75502e13a7c658a33 [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 toStringAsPrecision(int precision)
* @description Checks that for a NaN the method returns 'NaN' regardless
* of the [precision] value.
* @author msyabro
*/
import "../../../Utils/expect.dart";
main() {
for(int i = 1; i < 22; i++) {
Expect.equals('NaN', double.nan.toStringAsPrecision(i));
}
}