aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js71
1 files changed, 0 insertions, 71 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js b/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js
deleted file mode 100644
index 36ab3c837..000000000
--- a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js
+++ /dev/null
@@ -1,71 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S15.6.2.1_A1;
- * @section: 15.6.2.1;
- * @assertion: When Boolean is called as part of a new expression it is
- * a constructor: it initialises the newly created object;
- * @description: Checking type of the newly created object and it value;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.6.2.1_A1",
-
-path: "TestCases/15_Native/15.6_Boolean_Objects/15.6.2_The_Boolean_Constructor/S15.6.2.1_A1.js",
-
-assertion: "When Boolean is called as part of a new expression it is",
-
-description: "Checking type of the newly created object and it value",
-
-test: function testcase() {
- //CHECK#1
-if (typeof new Boolean() !== "object") {
- $ERROR("#1: typeof new Boolean() === 'object'");
-}
-
-//CHECK#2
-if (new Boolean() === undefined) {
- $ERROR("#2: new Boolean() should not be undefined");
-}
-
-//CHECK#3
-var x3 = new Boolean();
-if(typeof x3 !== "object"){
- $ERROR("#3: typeof new Boolean() !== 'object'");
-}
-
-//CHECK#4
-var x4 = new Boolean();
-if(x4 === undefined){
- $ERROR("#4: new Boolean() should not be undefined");
-}
-
-//CHECK#5
-if (typeof new Boolean(1) !== "object") {
- $ERROR("#5: typeof new Boolean(10) === 'object'");
-}
-
-//CHECK#6
-if (new Boolean(1) === undefined) {
- $ERROR("#6: new Boolean(1) should not be undefined");
-}
-
-//CHECK#7
-var x7 = new Boolean(1);
-if(typeof x7 !== "object"){
- $ERROR("#7: typeof new Boolean(1) !== 'object'");
-}
-
-//CHECK#8
-var x8 = new Boolean(1);
-if(x8 === undefined){
- $ERROR("#8: new Boolean(1) should not be undefined");
-}
-
- }
-});
-