aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T1.js
blob: ca4efc54fe877e5b5b26c1b3192a2c4ab42bae3d (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: S11.9.2_A6.2_T1;
 * @section: 11.9.2, 11.9.3;
 * @assertion: If one expression is undefined or null and another is not, return false;
 * @description: x is null or undefined, y is not;   
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.9.2_A6.2_T1",

path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T1.js",

assertion: "If one expression is undefined or null and another is not, return false",

description: "x is null or undefined, y is not",

test: function testcase() {
   //CHECK#1
if ((undefined != true) !== true) {
  $ERROR('#1: (undefined != true) === true');
}

//CHECK#2
if ((undefined != 0) !== true) {
  $ERROR('#2: (undefined != 0) === true');
}

//CHECK#3
if ((undefined != "undefined") !== true) {
  $ERROR('#3: (undefined != "undefined") === true');
}

//CHECK#4
if ((undefined != {}) !== true) {
  $ERROR('#4: (undefined != {}) === true');
}

//CHECK#5
if ((null != false) !== true) {
  $ERROR('#5: (null != false) === true');
}

//CHECK#6
if ((null != 0) !== true) {
  $ERROR('#6: (null != 0) === true');
}

//CHECK#7
if ((null != "null") !== true) {
  $ERROR('#7: (null != "null") === true');
}

//CHECK#8
if ((null != {}) !== true) {
  $ERROR('#8: (null != {}) === true');
}

 }
});