aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js55
1 files changed, 0 insertions, 55 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js b/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js
deleted file mode 100644
index 9f6551a83..000000000
--- a/test/suite/sputnik_converted/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js
+++ /dev/null
@@ -1,55 +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.4.3_A2_T1;
- * @section: 15.6.4.3;
- * @assertion: The valueOf function is not generic, it cannot be transferred
- * to other kinds of objects for use as a method and there is should be
- * a TypeError exception if its this value is not a Boolean object;
- * @description: transferring to the String objects;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.6.4.3_A2_T1",
-
-path: "TestCases/15_Native/15.6_Boolean_Objects/15.6.4_Properties_of_the_Boolean_Prototype_Object/S15.6.4.3_A2_T1.js",
-
-assertion: "The valueOf function is not generic, it cannot be transferred",
-
-description: "transferring to the String objects",
-
-test: function testcase() {
- //CHECK#1
-try{
- var s1 = new String();
- s1.valueOf = Boolean.prototype.valueOf;
- var v1 = s1.valueOf();
- $ERROR('#1: Boolean.prototype.valueOf on not a Boolean object should throw TypeError');
-}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#1: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not '+e);
- }
-}
-
-//CHECK#1
-try{
- var s2 = new String();
- s2.myValueOf = Boolean.prototype.valueOf;
- var v2 = s2.myValueOf();
- $ERROR('#2: Boolean.prototype.valueOf on not a Boolean object should throw TypeError');
-}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#2: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not '+e);
- }
-}
-
-
- }
-});
-