aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js')
-rw-r--r--test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js b/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js
deleted file mode 100644
index ce6255683..000000000
--- a/test/suite/sputnik_converted/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js
+++ /dev/null
@@ -1,42 +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.4.1_A2.1_T1;
- * @section: 15.4.1;
- * @assertion: The length property of the newly constructed object;
- * is set to the number of arguments;
- * @description: Array constructor is given no arguments or at least two arguments
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S15.4.1_A2.1_T1",
-
-path: "TestCases/15_Native/15.4_Array_Objects/15.4.1_The_Array_Constructor_Called_as_a_Function/S15.4.1_A2.1_T1.js",
-
-assertion: "The length property of the newly constructed object",
-
-description: "Array constructor is given no arguments or at least two arguments",
-
-test: function testcase() {
- //CHECK#1
-if (Array().length !== 0) {
- $ERROR('#1: (Array().length === 0. Actual: ' + (Array().length));
-}
-
-//CHECK#2
-if (Array(0,1,0,1).length !== 4) {
- $ERROR('#2: (Array(0,1,0,1).length === 4. Actual: ' + (Array(0,1,0,1).length));
-}
-
-//CHECK#3
-if (Array(undefined, undefined).length !== 2) {
- $ERROR('#3: (Array(undefined, undefined).length === 2. Actual: ' + (Array(undefined, undefined).length));
-}
-
- }
-});
-