aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.4.js
blob: 6de0ba985d29bb4122b2e35369d968f1a41ee2ef (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.

/**
* @name: S11.4.3_A3.4;
* @section: 11.4.3;
* @assertion: Result of appying "typeof" operator to number is "number";
* @description: typeof (number value) === "number";
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.4.3_A3.4",

path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.4.js",

assertion: "Result of appying \"typeof\" operator to number is \"number\"",

description: "typeof (number value) === \"number\"",

test: function testcase() {
   //CHECK#1
if (typeof 1 !== "number") {
  $ERROR('#1: typeof 1 === "number". Actual: ' + (typeof 1));
}

//CHECK#2
if (typeof Number.NaN !== "number") {
  $ERROR('#2: typeof NaN === "number". Actual: ' + (typeof NaN));
}

//CHECK#3
if (typeof Number.POSITIVE_INFINITY !== "number") {
  $ERROR('#3: typeof Infinity === "number". Actual: ' + (typeof Infinity));
}

//CHECK#4
if (typeof Number.NEGATIVE_INFINITY !== "number") {
  $ERROR('#4: typeof -Infinity === "number". Actual: ' + (typeof -Infinity));
}

//CHECK#5
if (typeof Math.PI !== "number") {
  $ERROR('#5: typeof Math.PI === "number". Actual: ' + (typeof Math.PI));
}

 }
});