aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T2.js
blob: 5f6d4117af3aea941bfcca2d0a08a102489d9929 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S11.9.5_A8_T2;
 * @section: 11.9.5, 11.9.6;
 * @assertion: If Type(x) is different from Type(y), return true;   
 * @description: x or y is primitive number;  
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.9.5_A8_T2",

path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T2.js",

assertion: "If Type(x) is different from Type(y), return true",

description: "x or y is primitive number",

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

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

//CHECK#3
if (!(1 !== new Boolean(1))) {
  $ERROR('#3: 1 !== new Boolean(1)');
}

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

//CHECK#5
if (!(1 !== new String(1))) {
  $ERROR('#5: 1 !== new String(1)');
}

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

//CHECK#7
if (!(false !== 0)) {
  $ERROR('#7: false !== 0');
}

//CHECK#8
if (!(new Boolean(0) !== 0)) {
  $ERROR('#8: new Boolean(0) !== 0');
}

//CHECK#9
if (!("0" !== 0)) {
  $ERROR('#9: "0" !== 0');
}

//CHECK#10
if (!(new String(0) !== 0)) {
  $ERROR('#10: new String(0) !== 0');
}

//CHECK#11
if (!(1 !== {valueOf: function () {return 1}})) {
  $ERROR('#11: 1 !== {valueOf: function () {return 1}}');
}

 }
});