aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js59
1 files changed, 0 insertions, 59 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js b/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js
deleted file mode 100644
index e19bd914b..000000000
--- a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js
+++ /dev/null
@@ -1,59 +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.1.1_A1_T2;
- * @section: 15.6.1.1;
- * @assertion: Returns a boolean value (not a Boolean object) computed by
- * ToBoolean(value);
- * @description: Used various number values as argument;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.6.1.1_A1_T2",
-
-path: "TestCases/15_Native/15.6_Boolean_Objects/15.6.1_The_Boolean_Constructor_Called_as_a_Function/S15.6.1.1_A1_T2.js",
-
-assertion: "Returns a boolean value (not a Boolean object) computed by",
-
-description: "Used various number values as argument",
-
-test: function testcase() {
- //CHECK#1
-if( typeof Boolean(0) !== "boolean" ) {
- $ERROR('#1.1: typeof Boolean(0) should be "boolean", actual is "'+typeof Boolean(0)+'"');
-}
-if( Boolean(0) !== false ) {
- $ERROR('#1.2: Boolean(0) should be false, actual is '+Boolean(0));
-}
-
-//CHECK#2
-if( typeof Boolean(-1) !== "boolean" ) {
- $ERROR('#2.1: typeof Boolean(-1) should be "boolean", actual is "'+typeof Boolean(-1)+'"');
-}
-if( Boolean(-1) !== true ) {
- $ERROR('#2.2: Boolean(-1) should be true, actual is '+Boolean(-1));
-}
-
-//CHECK#3
-if( typeof Boolean(-Infinity) !== "boolean" ) {
- $ERROR('#3.1: typeof Boolean(-Infinity) should be "boolean", actual is "'+typeof Boolean(-Infinity)+'"');
-}
-if( Boolean(-Infinity) !== true ) {
- $ERROR('#3.2: Boolean(-Infinity) should be true, actual is '+Boolean(-Infinity));
-}
-
-//CHECK#4
-if( typeof Boolean(NaN) !== "boolean" ) {
- $ERROR('#4.1: typeof Boolean(NaN) should be "boolean", actual is "'+typeof Boolean(NaN)+'"');
-}
-if( Boolean(NaN) !== false ) {
- $ERROR('#4.2: Boolean(NaN) should be false, actual is '+Boolean(NaN));
-}
-
- }
-});
-