aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A7.1.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_A7.1.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_A7.1.js69
1 files changed, 0 insertions, 69 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_A7.1.js b/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A7.1.js
deleted file mode 100644
index 4f1b1293a..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A7.1.js
+++ /dev/null
@@ -1,69 +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_A7.1;
- * @section: 11.9.2, 11.9.3;
- * @assertion: Type(x) and Type(y) are Object-s.
- * Return true, if x and y are references to the same Object; otherwise, return false;
- * @description: Checking Boolean object, Number object, String object, Object object;
- */
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.9.2_A7.1",
-
-path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.2_The_Does_not_equals_Operator/S11.9.2_A7.1.js",
-
-assertion: "Type(x) and Type(y) are Object-s.",
-
-description: "Checking Boolean object, Number object, String object, Object object",
-
-test: function testcase() {
- //CHECK#1
-if ((new Boolean(true) != new Boolean(true)) !== true) {
- $ERROR('#1: (new Boolean(true) != new Boolean(true)) === true');
-}
-
-//CHECK#2
-if ((new Number(1) != new Number(1)) !== true) {
- $ERROR('#2: (new Number(1) != new Number(1)) === true');
-}
-
-//CHECK#3
-if ((new String("x") != new String("x")) !== true) {
- $ERROR('#3: (new String("x") != new String("x")) === true');
-}
-
-//CHECK#4
-if ((new Object() != new Object()) !== true) {
- $ERROR('#4: (new Object() != new Object()) === true');
-}
-
-//CHECK#5
-x = {};
-y = x;
-if ((x != y) !== false) {
- $ERROR('#5: x = {}; y = x; (x != y) === false');
-}
-
-//CHECK#6
-if ((new Boolean(true) != new Number(1)) !== true) {
- $ERROR('#6 (new Boolean(true) != new Number(1)) === true');
-}
-
-//CHECK#7
-if ((new Number(1) != new String("1")) !== true) {
- $ERROR('#7: (new Number(1) != new String("1")) === true');
-}
-
-//CHECK#8
-if ((new String("1") != new Boolean(true)) !== true) {
- $ERROR('#8: (new String("x") != new Boolean(true)) === true');
-}
-
- }
-});
-