test262/test/suite/ch15/15.7/15.7.4/15.7.4.2/S15.7.4.2_A3_T01.js

73 lines
1.4 KiB
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: "toString: radix should be an integer between 2 and 36"
es5id: 15.7.4.2_A3_T01
description: radix is 1
---*/
//CHECK#1
try{
var n = Number.prototype.toString(1);
$ERROR('#1: Number.prototype.toString(1) should throw an Error');
}
catch(e){
}
//CHECK#2
try{
var n = (new Number()).toString(1);
$ERROR('#2: (new Number()).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#3
try{
var n = (new Number(0)).toString(1);
$ERROR('#3: (new Number(0)).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#4
try{
var n = (new Number(-1)).toString(1);
$ERROR('#4: (new Number(-1)).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#5
try{
var n =(new Number(1)).toString(1);
$ERROR('#5: (new Number(1)).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#6
try{
var n =(new Number(Number.NaN)).toString(1);
$ERROR('#6: (new Number(Number.NaN)).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#7
try{
var n =(new Number(Number.POSITIVE_INFINITY)).toString(1);
$ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).toString(1) should throw an Error');
}
catch(e){
}
//CHECK#8
try{
var n =(new Number(Number.NEGATIVE_INFINITY)).toString(1);
$ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(1) should throw an Error');
}
catch(e){
}