aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.1_The_Undefined_Type/S8.1_A1_T2.js
blob: 0bade865f484b1f5d8b4e0b451a9283a76c6bf4c (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S8.1_A1_T2;
 * @section: 8.1;
 * @assertion: The Undefined type has one value, called undefined;
 * @description: Check typeof(undefined) and typeof(void 0);
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S8.1_A1_T2",

path: "TestCases/08_Types/8.1_The_Undefined_Type/S8.1_A1_T2.js",

assertion: "The Undefined type has one value, called undefined",

description: "Check typeof(undefined) and typeof(void 0)",

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

// CHECK#2
if (!(typeof(void 0) === "undefined")) {  
	ERROR('#2: typeof(void 0) === "undefined". Actual: ' + (typeof(void 0)));  
}

// CHECK#3
if (!(undefined === void 0)) {  
	ERROR('#3: undefined === void 0');  
}

 }
});