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_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js66
1 files changed, 0 insertions, 66 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js b/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js
deleted file mode 100644
index dd1a57d37..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js
+++ /dev/null
@@ -1,66 +0,0 @@
-// 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_T2;
- * @section: 11.9.2, 11.9.3;
- * @assertion: If one expression is undefined or null and another is not, return false;
- * @description: y is null or undefined, x is not;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.9.2_A6.2_T2",
-
-path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A6.2_T2.js",
-
-assertion: "If one expression is undefined or null and another is not, return false",
-
-description: "y is null or undefined, x is not",
-
-test: function testcase() {
- //CHECK#1
-if ((false != undefined) !== true) {
- $ERROR('#1: (false != undefined) === true');
-}
-
-//CHECK#2
-if ((Number.NaN != undefined) !== true) {
- $ERROR('#2: (Number.NaN != undefined) === true');
-}
-
-//CHECK#3
-if (("undefined" != undefined) !== true) {
- $ERROR('#3: ("undefined" != undefined) === true');
-}
-
-//CHECK#4
-if (({} != undefined) !== true) {
- $ERROR('#4: ({} != undefined) === true');
-}
-
-//CHECK#5
-if ((false != null) !== true) {
- $ERROR('#5: (false != null) === true');
-}
-
-//CHECK#6
-if ((0 != null) !== true) {
- $ERROR('#6: (0 != null) === true');
-}
-
-//CHECK#7
-if (("null" != null) !== true) {
- $ERROR('#7: ("null" != null) === true');
-}
-
-//CHECK#8
-if (({} != null) !== true) {
- $ERROR('#8: ({} != null) === true');
-}
-
- }
-});
-