test262/test/suite/ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A1_T1.js
2011-10-03 13:04:52 -07:00

21 lines
598 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Operator use ToString
*
* @path ch15/15.1/15.1.2/15.1.2.2/S15.1.2.2_A1_T1.js
* @description Checking for boolean primitive
*/
//CHECK#1
if (!(isNaN(parseInt(true)) && isNaN(parseInt("NaN")))) {
$ERROR('#1: parseInt(true) === Not-a-Number; parseInt("NaN") === Not-a-Number. Actual: ' + (parseInt("NaN")));
}
//CHECK#2
if (String(parseInt(false)) !== "NaN") {
$ERROR('#2: String(parseInt(false)) === "NaN". Actual: ' + (String(parseInt(false))));
}