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_A5.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_A5.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_A5.js52
1 files changed, 0 insertions, 52 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_A5.js b/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A5.js
deleted file mode 100644
index d231de3b1..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A5.js
+++ /dev/null
@@ -1,52 +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_A5;
- * @section: 11.9.5, 11.9.6;
- * @assertion: Type(x) and Type(y) are String-s.
- * Return false, if x and y are exactly the same sequence of characters; otherwise, return true;
- * @description: x and y are primitive strings;
- */
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.9.5_A5",
-
-path: "TestCases/11_Expressions/11.9_Equality_Operators/11.9.5_The_Strict_Does_not_equals_Operator/S11.9.5_A5.js",
-
-assertion: "Type(x) and Type(y) are String-s.",
-
-description: "x and y are primitive strings",
-
-test: function testcase() {
- //CHECK#1
-if ("" !== "") {
- $ERROR('#1: "" === ""');
-}
-
-//CHECK#2
-if (" " !== " ") {
- $ERROR('#2: " " === " "');
-}
-
-//CHECK#3
-if ("string" !== "string") {
- $ERROR('#3: "string" === "string"');
-}
-
-//CHECK#4
-if (!(" string" !== "string ")) {
- $ERROR('#4: " string" !== "string "');
-}
-
-//CHECK#5
-if (!("1.0" !== "1")) {
- $ERROR('#5: "1.0" !== "1"');
-}
-
- }
-});
-