aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js b/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js
deleted file mode 100644
index ab1bdb455..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js
+++ /dev/null
@@ -1,41 +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.4.3_A3.3;
-* @section: 11.4.3;
-* @assertion: Result of applying "typeof" operator to boolean is "boolean";
-* @description: typeof (boolean value) === "boolean";
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.4.3_A3.3",
-
-path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A3.3.js",
-
-assertion: "Result of applying \"typeof\" operator to boolean is \"boolean\"",
-
-description: "typeof (boolean value) === \"boolean\"",
-
-test: function testcase() {
- //CHECK#1
-if (typeof true !== "boolean") {
- $ERROR('#1: typeof true === "boolean". Actual: ' + (typeof true));
-}
-
-//CHECK#2
-if (typeof false !== "boolean") {
- $ERROR('#2: typeof false === "boolean". Actual: ' + (typeof false));
-}
-
-//CHECK#3
-if (typeof !-1 !== "boolean") {
- $ERROR('#3: typeof !-1 === "boolean". Actual: ' + (typeof !-1));
-}
-
- }
-});
-