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.4_Number.prototype.valueOf/S15.7.4.4_A1_T02.js
blob: d6d51398400ebb161860be3235cdd4fea9178940 (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
// 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.4_A1_T02;
 * @section: 15.7.4.4;
 * @assertion: Number.prototype.valueOf() returns this number value;
 * @description: calling with argument;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S15.7.4.4_A1_T02",

path: "TestCases/15_Native/15.7_Number_Objects/15.7.4_Properties_of_the_Number_Prototype_Object/15.7.4.4_Number.prototype.valueOf/S15.7.4.4_A1_T02.js",

assertion: "Number.prototype.valueOf() returns this number value",

description: "calling with argument",

test: function testcase() {
   //CHECK#1
if(Number.prototype.valueOf("argument") !== 0){
  $ERROR('#1: Number.prototype.valueOf("argument") === 0');
}

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

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

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

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

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

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

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

 }
});