aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/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_T01.js
blob: 8b15fcafd7ca6b243b6b7699424cb34d1f9e17e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S15.7.4.2_A3_T01;
 * @section: 15.7.4.2;
 * @assertion: toString: radix should be an integer between 2 and 36;
 * @description: radix is 1;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S15.7.4.2_A3_T01",

path: "TestCases/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_T01.js",

assertion: "toString: radix should be an integer between 2 and 36",

description: "radix is 1",

test: function testcase() {
   //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){
}

 }
});