// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * toString: radix should be an integer between 2 and 36 * * @path 15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.2_Number.prototype.toString/S15.7.4.2_A3_T03.js * @description radix is null value */ //CHECK#1 try{ var n = Number.prototype.toString(null); $ERROR('#1: Number.prototype.toString(null) should throw an Error'); } catch(e){ } //CHECK#2 try{ var n = (new Number()).toString(null); $ERROR('#2: (new Number()).toString(null) should throw an Error'); } catch(e){ } //CHECK#3 try{ var n = (new Number(0)).toString(null); $ERROR('#3: (new Number(0)).toString(null) should throw an Error'); } catch(e){ } //CHECK#4 try{ var n = (new Number(-1)).toString(null); $ERROR('#4: (new Number(-1)).toString(null) should throw an Error'); } catch(e){ } //CHECK#5 try{ var n = (new Number(1)).toString(null); $ERROR('#5: (new Number(1)).toString(null) should throw an Error'); } catch(e){ } //CHECK#6 try{ var n = (new Number(Number.NaN)).toString(null); $ERROR('#6: (new Number(Number.NaN)).toString(null) should throw an Error'); } catch(e){ } //CHECK#7 try{ var n = (new Number(Number.POSITIVE_INFINITY)).toString(null); $ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).toString(null) should throw an Error'); } catch(e){ } //CHECK#8 try{ var n = (new Number(Number.NEGATIVE_INFINITY)).toString(null); $ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(null) should throw an Error'); } catch(e){ }