aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js')
-rw-r--r--test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js b/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js
deleted file mode 100644
index 019f71dd8..000000000
--- a/test/suite/sputnik_converted/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S8.6.2_A5_T3;
-* @section: 8.6.2, 13.1, 13.2;
-* @assertion: [[Call]] executes code associated with the object;
-* @description: Call function-property of global object, property defined
-* as knock=function(){count++};
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S8.6.2_A5_T3",
-
-path: "TestCases/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T3.js",
-
-assertion: "[[Call]] executes code associated with the object",
-
-description: "Call function-property of global object, property defined",
-
-test: function testcase() {
- count=0;
-knock=function(){count++};
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#1
-knock();
-if (count !==1) {
- $ERROR('#1: count=0; knock=function(){count++}; knock(); count === 1. Actual: ' + (count));
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
-//////////////////////////////////////////////////////////////////////////////
-//CHECK#2
-this['knock']();
-if (count !==2) {
- $ERROR('#2: count=0; knock=function(){count++}; knock(); this[\'knock\'](); count === 2. Actual: ' + (count));
-}
-//
-//////////////////////////////////////////////////////////////////////////////
-
- }
-});
-