Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * Result of appying "typeof" operator to number is "number"
6 *
7 * @path ch11/11.4/11.4.3/S11.4.3_A3.4.js
8 * @description typeof (number value) === "number"
9 */
11 //CHECK#1
12 if (typeof 1 !== "number") {
13 $ERROR('#1: typeof 1 === "number". Actual: ' + (typeof 1));
14 }
16 //CHECK#2
17 if (typeof Number.NaN !== "number") {
18 $ERROR('#2: typeof NaN === "number". Actual: ' + (typeof NaN));
19 }
21 //CHECK#3
22 if (typeof Number.POSITIVE_INFINITY !== "number") {
23 $ERROR('#3: typeof Infinity === "number". Actual: ' + (typeof Infinity));
24 }
26 //CHECK#4
27 if (typeof Number.NEGATIVE_INFINITY !== "number") {
28 $ERROR('#4: typeof -Infinity === "number". Actual: ' + (typeof -Infinity));
29 }
31 //CHECK#5
32 if (typeof Math.PI !== "number") {
33 $ERROR('#5: typeof Math.PI === "number". Actual: ' + (typeof Math.PI));
34 }