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_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js82
1 files changed, 0 insertions, 82 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js b/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js
deleted file mode 100644
index 789e9f9eb..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js
+++ /dev/null
@@ -1,82 +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.5_A8_T3;
- * @section: 11.9.5, 11.9.6;
- * @assertion: If Type(x) is different from Type(y), return true;
- * @description: x or y is primitive string;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.9.5_A8_T3",
-
-path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A8_T3.js",
-
-assertion: "If Type(x) is different from Type(y), return true",
-
-description: "x or y is primitive string",
-
-test: function testcase() {
- //CHECK#1
-if (!("1" !== new String("1"))) {
- $ERROR('#1: "1" !== new String("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 Number("1"))) {
- $ERROR('#5: "1" === new Number("1")');
-}
-
-//CHECK#6
-if (!(new String(false) !== false)) {
- $ERROR('#6: new Number(false) !== false');
-}
-
-//CHECK#7
-if (!(false !== "0")) {
- $ERROR('#7: false !== "0"');
-}
-
-//CHECK#8
-if (!("0" !== new Boolean("0"))) {
- $ERROR('#8: "0" !== new Boolean("0")');
-}
-
-//CHECK#9
-if (!(false !== 0)) {
- $ERROR('#9: false !== 0');
-}
-
-//CHECK#10
-if (!(false !== new Number(false))) {
- $ERROR('#10: false !== new Number(false)');
-}
-
-//CHECK#11
-if (!("1" !== {valueOf: function () {return "1"}})) {
- $ERROR('#11: "1" !== {valueOf: function () {return "1"}}');
-}
-
-
- }
-});
-