aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.7/15.7.4/15.7.4.2/S15.7.4.2_A2_T12.js
blob: eca23c38e64e391ca2e004e3b29ce57c7833de5b (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * toString: If radix is an integer from 2 to 36, but not 10,
 * the result is a string, the choice of which is implementation-dependent
 *
 * @path ch15/15.7/15.7.4/15.7.4.2/S15.7.4.2_A2_T12.js
 * @description radix is 14
 */

//CHECK#1
if(Number.prototype.toString(14) !== "0"){
  $ERROR('#1: Number.prototype.toString(14) === "0"');
}

//CHECK#2
if((new Number()).toString(14) !== "0"){
  $ERROR('#2: (new Number()).toString(14) === "0"');
}

//CHECK#3
if((new Number(0)).toString(14) !== "0"){
  $ERROR('#3: (new Number(0)).toString(14) === "0"');
}

//CHECK#4
if((new Number(-1)).toString(14) !== "-1"){
  $ERROR('#4: (new Number(-1)).toString(14) === "-1"');
}

//CHECK#5
if((new Number(1)).toString(14) !== "1"){
  $ERROR('#5: (new Number(1)).toString(14) === "1"');
}

//CHECK#6
if((new Number(Number.NaN)).toString(14) !== "NaN"){
  $ERROR('#6: (new Number(Number.NaN)).toString(14) === "NaN"');
}

//CHECK#7
if((new Number(Number.POSITIVE_INFINITY)).toString(14) !== "Infinity"){
  $ERROR('#7: (new Number(Number.POSITIVE_INFINITY)).toString(14) === "Infinity"');
}

//CHECK#8
if((new Number(Number.NEGATIVE_INFINITY)).toString(14) !== "-Infinity"){
  $ERROR('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(14) === "-Infinity"');
}