aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js98
1 files changed, 0 insertions, 98 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js b/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js
deleted file mode 100644
index 8a81b1e2d..000000000
--- a/test/suite/sputnik_converted/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js
+++ /dev/null
@@ -1,98 +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.5.1.1_A1_T13;
-* @section: 15.5.1.1;
-* @assertion: When String is called as a function rather than as a constructor, it performs a type conversion;
-* @description: Call String(true) and String(false);
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.5.1.1_A1_T13",
-
-path: "TestCases/15_Native/15.5_String_Objects/15.5.1_The_String_Constructor_Called_as_a_Function/S15.5.1.1_A1_T13.js",
-
-assertion: "When String is called as a function rather than as a constructor, it performs a type conversion",
-
-description: "Call String(true) and String(false)",
-
-test: function testcase() {
- var __str = String(true);
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-if (typeof __str !== "string") {
- $ERROR('#1: __str = String(true); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-if (__str !== "true") {
- $ERROR('#2: __str = String(true); __str === "true". Actual: __str ==='+__str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-__str = String(false);
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#3
-if (typeof __str !== "string") {
- $ERROR('#3: __str = String(false); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#4
-if (__str !== "false") {
- $ERROR('#4: __str = String(false); __str === "false". Actual: __str ==='+__str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-__str = String(Boolean(true));
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#5
-if (typeof __str !== "string") {
- $ERROR('#5: __str = String(Boolean(true)); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#6
-if (__str !== "true") {
- $ERROR('#6: __str = String(Boolean(true)); __str === "true". Actual: __str ==='+__str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-__str = String(Boolean(false));
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#7
-if (typeof __str !== "string") {
- $ERROR('#7: __str = String(Boolean(false)); typeof __str === "string". Actual: typeof __str ==='+typeof __str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#8
-if (__str !== "false") {
- $ERROR('#8: __str = String(Boolean(false)); __str === "false". Actual: __str ==='+__str );
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
- }
-});
-