mirror of https://github.com/tc39/test262.git
Replace runTestCase with assert helpers [test/built-ins/Array/prototype/forEach]
This commit is contained in:
parent
ce98c25647
commit
e8246fd9f0
|
@ -4,13 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-0-1
|
||||
description: Array.prototype.forEach must exist as a function
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var f = Array.prototype.forEach;
|
||||
if (typeof(f) === "function") {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(typeof(f), "function", 'typeof(f)');
|
||||
|
|
|
@ -4,12 +4,6 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-0-2
|
||||
description: Array.prototype.forEach.length must be 1
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
if (Array.prototype.forEach.length === 1) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(Array.prototype.forEach.length, 1, 'Array.prototype.forEach.length');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-11
|
||||
description: Array.prototype.forEach applied to Date object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof Date;
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
obj[0] = 1;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-12
|
||||
description: Array.prototype.forEach applied to RegExp object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof RegExp;
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
obj[0] = 1;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-14
|
||||
description: Array.prototype.forEach applied to Error object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof Error;
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
obj[0] = 1;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-15
|
||||
description: Array.prototype.forEach applied to the Arguments object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = ('[object Arguments]' === Object.prototype.toString.call(obj));
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
}("a", "b"));
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-4
|
||||
description: Array.prototype.forEach applied to Boolean object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof Boolean;
|
||||
|
@ -19,6 +17,5 @@ function testcase() {
|
|||
obj[1] = 12;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-6
|
||||
description: Array.prototype.forEach applied to Number object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof Number;
|
||||
|
@ -20,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,16 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-7
|
||||
description: Array.prototype.forEach applied to string primitive
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof String;
|
||||
}
|
||||
|
||||
Array.prototype.forEach.call("abc", callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-8
|
||||
description: Array.prototype.forEach applied to String object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof String;
|
||||
|
@ -16,6 +14,4 @@ function testcase() {
|
|||
var obj = new String("abc");
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-1-9
|
||||
description: Array.prototype.forEach applied to Function object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = obj instanceof Function;
|
||||
|
@ -20,6 +18,5 @@ function testcase() {
|
|||
obj[1] = 9;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-1
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is own data property on an
|
||||
Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -23,6 +21,5 @@ function testcase() {
|
|||
};
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-10
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an inherited accessor property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -33,6 +31,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-2-11
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an own accessor property without a get function
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
accessed = true;
|
||||
|
@ -26,6 +23,5 @@ function testcase() {
|
|||
});
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-2-13
|
|||
description: >
|
||||
Array.prototype.forEach applied to the Array-like object that
|
||||
'length' is inherited accessor property without a get function
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -31,6 +28,5 @@ function testcase() {
|
|||
child[1] = 12;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-2-14
|
|||
description: >
|
||||
Array.prototype.forEach applied to the Array-like object that
|
||||
'length' property doesn't exist
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -20,7 +17,5 @@ function testcase() {
|
|||
var obj = { 0: 11, 1: 12 };
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return !accessed;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-17
|
|||
description: >
|
||||
Array.prototype.forEach applied to the Arguments object, which
|
||||
implements its own property get method
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -21,6 +19,4 @@ function testcase() {
|
|||
return result;
|
||||
};
|
||||
|
||||
return func(12, 11);
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(func(12, 11), 'func(12, 11) !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-18
|
|||
description: >
|
||||
Array.prototype.forEach applied to String object, which implements
|
||||
its own property get method
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 3);
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
var str = new String("012");
|
||||
|
||||
Array.prototype.forEach.call(str, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-19
|
|||
description: >
|
||||
Array.prototype.forEach applied to Function object, which
|
||||
implements its own property get method
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -23,6 +21,5 @@ function testcase() {
|
|||
fun[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(fun, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,16 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-2-2
|
||||
description: Array.prototype.forEach - 'length' is own data property on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
}
|
||||
|
||||
[12, 11].forEach(callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-3
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is an own data property that
|
||||
overrides an inherited data property on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -27,6 +25,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-5
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an own data property that overrides an inherited accessor property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -37,6 +35,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-6
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an inherited data property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -26,6 +24,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-7
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an own accessor property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -29,6 +27,5 @@ function testcase() {
|
|||
obj[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-2-8
|
|||
description: >
|
||||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an own accessor property that overrides an inherited data property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -34,6 +32,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -7,10 +7,8 @@ description: >
|
|||
Array.prototype.forEach applied to Array-like object, 'length' is
|
||||
an own accessor property that overrides an inherited accessor
|
||||
property
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (obj.length === 2);
|
||||
|
@ -42,6 +40,5 @@ function testcase() {
|
|||
child[2] = 9;
|
||||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-3-1
|
||||
description: Array.prototype.forEach - value of 'length' is undefined
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -19,6 +16,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-10
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
NaN)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-11
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing a
|
||||
positive number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-12
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing a
|
||||
negative number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(testResult, false, 'testResult');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-13
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing a
|
||||
decimal number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -20,6 +17,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-3-14
|
||||
description: Array.prototype.forEach - 'length' is a string containing -Infinity
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed2 = false;
|
||||
|
||||
function callbackfn2(val, idx, obj) {
|
||||
|
@ -19,6 +16,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj2, callbackfn2);
|
||||
|
||||
return !accessed2;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed2, false, 'accessed2');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-15
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing an
|
||||
exponential number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -20,6 +17,5 @@ function testcase() {
|
|||
var obj = { 1: 11, 2: 9, length: "2E0" };
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-16
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing a hex
|
||||
number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-17
|
|||
description: >
|
||||
Array.prototype.forEach - 'length' is a string containing a number
|
||||
with leading zeros
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-18
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a string that can't
|
||||
convert to a number
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-19
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is an Object which has
|
||||
an own toString method.
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -29,6 +26,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-2
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a boolean (value is
|
||||
true)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
testResult = (val > 10);
|
||||
|
@ -20,6 +17,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-20
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is an Object which has
|
||||
an own valueOf method.
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -29,6 +26,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach - 'length' is an object that has an own
|
||||
valueOf method that returns an object and toString method that
|
||||
returns a string
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
var firstStepOccured = false;
|
||||
var secondStepOccured = false;
|
||||
|
@ -37,6 +34,6 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult && firstStepOccured && secondStepOccured;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(firstStepOccured, 'firstStepOccured !== true');
|
||||
assert(secondStepOccured, 'secondStepOccured !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach uses inherited valueOf method when
|
||||
'length' is an object with an own toString and inherited valueOf
|
||||
methods
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
var valueOfAccessed = false;
|
||||
var toStringAccessed = false;
|
||||
|
@ -45,6 +42,6 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult && valueOfAccessed && !toStringAccessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(valueOfAccessed, 'valueOfAccessed !== true');
|
||||
assert.sameValue(toStringAccessed, false, 'toStringAccessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-24
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a positive
|
||||
non-integer, ensure truncation occurs in the proper direction
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -25,6 +22,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-25
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a negative
|
||||
non-integer
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -25,6 +22,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(testResult, false, 'testResult');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-3
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
0)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-4
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
+0)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-5
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
-0)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-6
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
positive)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult1 = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult1;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult1, 'testResult1 !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-7
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
negative)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult1 = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !testResult1;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(testResult1, false, 'testResult1');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-3-9
|
|||
description: >
|
||||
Array.prototype.forEach - value of 'length' is a number (value is
|
||||
-Infinity)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -4,17 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-4-12
|
||||
description: Array.prototype.forEach - 'callbackfn' is a function
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
accessed = true;
|
||||
}
|
||||
|
||||
[11, 9].forEach(callbackfn);
|
||||
return accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(accessed, 'accessed !== true');
|
||||
|
|
|
@ -5,10 +5,8 @@
|
|||
es5id: 15.4.4.18-5-1-s
|
||||
description: Array.prototype.forEach - thisArg not passed to strict callbackfn
|
||||
flags: [noStrict]
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var innerThisCorrect = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -18,6 +16,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[1].forEach(callbackfn);
|
||||
return innerThisCorrect;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(innerThisCorrect, 'innerThisCorrect !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-10
|
||||
description: Array.prototype.forEach - Array Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objArray = [];
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objArray);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-11
|
||||
description: Array.prototype.forEach - String Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objString = new String();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objString);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-12
|
||||
description: Array.prototype.forEach - Boolean Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objBoolean = new Boolean();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objBoolean);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-13
|
||||
description: Array.prototype.forEach - Number Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objNumber = new Number();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objNumber);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,17 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-14
|
||||
description: Array.prototype.forEach - the Math object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (this === Math);
|
||||
}
|
||||
|
||||
[11].forEach(callbackfn, Math);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-15
|
||||
description: Array.prototype.forEach - Date Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objDate = new Date();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objDate);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-16
|
||||
description: Array.prototype.forEach - RegExp Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objRegExp = new RegExp();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objRegExp);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,17 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-17
|
||||
description: Array.prototype.forEach - the JSON object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (this === JSON);
|
||||
}
|
||||
|
||||
[11].forEach(callbackfn, JSON);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-18
|
||||
description: Array.prototype.forEach - Error Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objError = new RangeError();
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objError);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-5-19
|
|||
description: >
|
||||
Array.prototype.forEach - the Arguments object can be used as
|
||||
thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var arg;
|
||||
|
||||
|
@ -23,6 +20,5 @@ function testcase() {
|
|||
}(1, 2, 3));
|
||||
|
||||
[11].forEach(callbackfn, arg);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-2
|
||||
description: Array.prototype.forEach - thisArg is Object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var res = false;
|
||||
var o = new Object();
|
||||
o.res = true;
|
||||
|
@ -19,8 +17,5 @@ function testcase() {
|
|||
|
||||
var arr = [1];
|
||||
arr.forEach(callbackfn,o)
|
||||
if( result === true)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(result, true, 'result');
|
||||
|
|
|
@ -4,19 +4,14 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-21
|
||||
description: Array.prototype.forEach - the global object can be used as thisArg
|
||||
includes:
|
||||
- runTestCase.js
|
||||
- fnGlobalObject.js
|
||||
includes: [fnGlobalObject.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (this === fnGlobalObject());
|
||||
}
|
||||
|
||||
[11].forEach(callbackfn, fnGlobalObject());
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-22
|
||||
description: Array.prototype.forEach - boolean primitive can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -16,6 +13,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, false);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,17 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-23
|
||||
description: Array.prototype.forEach - number primitive can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (this.valueOf() === 101);
|
||||
}
|
||||
|
||||
[11].forEach(callbackfn, 101);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,17 +4,13 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-24
|
||||
description: Array.prototype.forEach - string primitive can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
function callbackfn(val, idx, obj) {
|
||||
result = (this.valueOf() === "abc");
|
||||
}
|
||||
|
||||
[11].forEach(callbackfn, "abc");
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -5,10 +5,8 @@
|
|||
es5id: 15.4.4.18-5-25
|
||||
description: Array.prototype.forEach - thisArg not passed
|
||||
flags: [noStrict]
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
function innerObj() {
|
||||
this._15_4_4_18_5_25 = true;
|
||||
var _15_4_4_18_5_25 = false;
|
||||
|
@ -20,6 +18,5 @@ function testcase() {
|
|||
arr.forEach(callbackfn)
|
||||
this.retVal = !result;
|
||||
}
|
||||
return new innerObj().retVal;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(new innerObj().retVal, 'new innerObj().retVal !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-3
|
||||
description: Array.prototype.forEach - thisArg is Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var res = false;
|
||||
var a = new Array();
|
||||
a.res = true;
|
||||
|
@ -19,8 +17,5 @@ function testcase() {
|
|||
|
||||
var arr = [1];
|
||||
arr.forEach(callbackfn,a)
|
||||
if( result === true)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(result, true, 'result');
|
||||
|
|
|
@ -6,10 +6,8 @@ es5id: 15.4.4.18-5-4
|
|||
description: >
|
||||
Array.prototype.forEach - thisArg is object from object
|
||||
template(prototype)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var res = false;
|
||||
var result;
|
||||
function callbackfn(val, idx, obj)
|
||||
|
@ -22,8 +20,5 @@ function testcase() {
|
|||
var f = new foo();
|
||||
var arr = [1];
|
||||
arr.forEach(callbackfn,f)
|
||||
if( result === true)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(result, true, 'result');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-5
|
||||
description: Array.prototype.forEach - thisArg is object from object template
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var res = false;
|
||||
var result;
|
||||
function callbackfn(val, idx, obj)
|
||||
|
@ -21,8 +19,5 @@ function testcase() {
|
|||
|
||||
var arr = [1];
|
||||
arr.forEach(callbackfn,f)
|
||||
if( result === true)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(result, true, 'result');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-6
|
||||
description: Array.prototype.forEach - thisArg is function
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var res = false;
|
||||
var result;
|
||||
function callbackfn(val, idx, obj)
|
||||
|
@ -20,8 +18,5 @@ function testcase() {
|
|||
|
||||
var arr = [1];
|
||||
arr.forEach(callbackfn,foo)
|
||||
if( result === true)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert.sameValue(result, true, 'result');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-7
|
||||
description: Array.prototype.forEach - built-in functions can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -16,6 +13,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, eval);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-5-9
|
||||
description: Array.prototype.forEach - Function Object can be used as thisArg
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var objString = function () { };
|
||||
|
||||
|
@ -17,6 +14,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
[11].forEach(callbackfn, objString);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-1
|
|||
description: >
|
||||
Array.prototype.forEach doesn't consider new elements added to
|
||||
array after the call
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -21,7 +18,5 @@ function testcase() {
|
|||
|
||||
var arr = [1,2,,4,5];
|
||||
arr.forEach(callbackfn);
|
||||
if( callCnt === 5)
|
||||
return true;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 5, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-2
|
|||
description: >
|
||||
Array.prototype.forEach doesn't visit deleted elements in array
|
||||
after the call
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -21,8 +18,5 @@ function testcase() {
|
|||
|
||||
var arr = [1,2,3,4,5];
|
||||
arr.forEach(callbackfn)
|
||||
if( callCnt === 4)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 4, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-3
|
|||
description: >
|
||||
Array.prototype.forEach doesn't visit deleted elements when
|
||||
Array.length is decreased
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -20,8 +17,5 @@ function testcase() {
|
|||
|
||||
var arr = [1,2,3,4,5];
|
||||
arr.forEach(callbackfn);
|
||||
if( callCnt === 3)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 3, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-4
|
|||
description: >
|
||||
Array.prototype.forEach doesn't consider newly added elements in
|
||||
sparse array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -22,8 +19,5 @@ function testcase() {
|
|||
arr[1] = 1;
|
||||
arr[2] = 2;
|
||||
arr.forEach(callbackfn);
|
||||
if( callCnt === 2)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 2, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-5
|
|||
description: >
|
||||
Array.prototype.forEach visits deleted element in array after the
|
||||
call when same index is also present in prototype
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -23,8 +20,5 @@ function testcase() {
|
|||
var arr = [1,2,3,4,5];
|
||||
arr.forEach(callbackfn)
|
||||
delete Array.prototype[4];
|
||||
if( callCnt === 5)
|
||||
return true;
|
||||
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 5, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-7
|
|||
description: >
|
||||
Array.prototype.forEach - considers new value of elements in array
|
||||
after the call
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var result = false;
|
||||
var arr = [1, 2, 3, 4, 5];
|
||||
|
||||
|
@ -22,6 +19,5 @@ function testcase() {
|
|||
}
|
||||
|
||||
arr.forEach(callbackfn);
|
||||
return result;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(result, 'result !== true');
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
/*---
|
||||
es5id: 15.4.4.18-7-8
|
||||
description: Array.prototype.forEach - no observable effects occur if len is 0
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
var accessed = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -17,6 +15,5 @@ function testcase() {
|
|||
var obj = { 0: 11, 1: 12, length: 0 };
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return !accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(accessed, false, 'accessed');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-9
|
|||
description: >
|
||||
Array.prototype.forEach - modifications to length don't change
|
||||
number of iterations
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var called = 0;
|
||||
function callbackfn(val, idx, obj) {
|
||||
called++;
|
||||
|
@ -27,6 +24,5 @@ function testcase() {
|
|||
});
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return 2 === called;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(called, 2, 'called');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-1
|
|||
description: >
|
||||
Array.prototype.forEach - callbackfn not called for indexes never
|
||||
been assigned values
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var callCnt = 0;
|
||||
function callbackfn(val, idx, obj)
|
||||
{
|
||||
|
@ -20,7 +17,5 @@ function testcase() {
|
|||
var arr = new Array(10);
|
||||
arr[1] = undefined;
|
||||
arr.forEach(callbackfn);
|
||||
if( callCnt === 1)
|
||||
return true;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert.sameValue(callCnt, 1, 'callCnt');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-14
|
|||
description: >
|
||||
Array.prototype.forEach - decreasing length of array causes index
|
||||
property not to be visited
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
var testResult = true;
|
||||
|
||||
|
@ -33,6 +30,5 @@ function testcase() {
|
|||
|
||||
arr.forEach(callbackfn);
|
||||
|
||||
return testResult && accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(accessed, 'accessed !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach - decreasing length of array does not
|
||||
delete non-configurable properties
|
||||
flags: [noStrict]
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -39,6 +36,4 @@ function testcase() {
|
|||
|
||||
arr.forEach(callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-2
|
|||
description: >
|
||||
Array.prototype.forEach - added properties in step 2 are visible
|
||||
here
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -31,6 +28,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-3
|
|||
description: >
|
||||
Array.prototype.forEach - deleted properties in step 2 are visible
|
||||
here
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
var testResult = true;
|
||||
|
||||
|
@ -31,6 +28,6 @@ function testcase() {
|
|||
});
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return testResult && accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(accessed, 'accessed !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-4
|
|||
description: >
|
||||
Array.prototype.forEach - properties added into own object after
|
||||
current position are visited on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -35,6 +32,5 @@ function testcase() {
|
|||
});
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-5
|
|||
description: >
|
||||
Array.prototype.forEach - properties added into own object after
|
||||
current position are visited on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -35,6 +32,5 @@ function testcase() {
|
|||
});
|
||||
|
||||
arr.forEach(callbackfn);
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-8
|
|||
description: >
|
||||
Array.prototype.forEach - deleting own property causes index
|
||||
property not to be visited on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
var testResult = true;
|
||||
|
||||
|
@ -39,6 +36,6 @@ function testcase() {
|
|||
});
|
||||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
return testResult && accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(accessed, 'accessed !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-b-9
|
|||
description: >
|
||||
Array.prototype.forEach - deleting own property causes index
|
||||
property not to be visited on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var accessed = false;
|
||||
var testResult = true;
|
||||
|
||||
|
@ -39,6 +36,6 @@ function testcase() {
|
|||
});
|
||||
|
||||
arr.forEach(callbackfn);
|
||||
return testResult && accessed;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
|
||||
assert(testResult, 'testResult !== true');
|
||||
assert(accessed, 'accessed !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-1
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is own data
|
||||
property on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var kValue = { };
|
||||
var testResult = false;
|
||||
|
||||
|
@ -24,6 +21,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-10
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is own accessor
|
||||
property on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -30,6 +27,4 @@ function testcase() {
|
|||
|
||||
arr.forEach(callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach - element to be retrieved is own accessor
|
||||
property that overrides an inherited data property on an
|
||||
Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -37,6 +34,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach - element to be retrieved is own accessor
|
||||
property that overrides an inherited accessor property on an
|
||||
Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -45,6 +42,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-15
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is inherited
|
||||
accessor property on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -36,6 +33,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-17
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is own accessor
|
||||
property without a get function on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -27,6 +24,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(obj, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-18
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is own accessor
|
||||
property without a get function on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -28,6 +25,4 @@ function testcase() {
|
|||
|
||||
arr.forEach(callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-2
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is own data
|
||||
property on an Array
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -21,6 +18,4 @@ function testcase() {
|
|||
|
||||
[11].forEach(callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -6,11 +6,8 @@ es5id: 15.4.4.18-7-c-i-21
|
|||
description: >
|
||||
Array.prototype.forEach - element to be retrieved is inherited
|
||||
accessor property without a get function on an Array-like object
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -33,6 +30,4 @@ function testcase() {
|
|||
|
||||
Array.prototype.forEach.call(child, callbackfn);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
|
@ -7,11 +7,8 @@ description: >
|
|||
Array.prototype.forEach - This object is the Arguments object
|
||||
which implements its own property get method (number of arguments
|
||||
is less than number of parameters)
|
||||
includes: [runTestCase.js]
|
||||
---*/
|
||||
|
||||
function testcase() {
|
||||
|
||||
var testResult = false;
|
||||
|
||||
function callbackfn(val, idx, obj) {
|
||||
|
@ -26,6 +23,4 @@ function testcase() {
|
|||
|
||||
func(11);
|
||||
|
||||
return testResult;
|
||||
}
|
||||
runTestCase(testcase);
|
||||
assert(testResult, 'testResult !== true');
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue