diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-1.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-1.js index 784882871b13ed9497900b9eca340aca8fa2b958..691b90f9737999b68aa24f7a5e2c7ecd6fcb535e 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-1.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-1.js @@ -4,12 +4,6 @@ /*--- es5id: 15.2.3.2-0-1 description: Object.getPrototypeOf must exist as a function -includes: [runTestCase.js] ---*/ -function testcase() { - if (typeof(Object.getPrototypeOf) === "function") { - return true; - } - } -runTestCase(testcase); +assert.sameValue(typeof(Object.getPrototypeOf), "function", 'typeof(Object.getPrototypeOf)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-2.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-2.js index f6f8449971e09759e2debdce55c74847f124e1c3..7e4e1f4437022105e9e789edbd8ff2ff5bdb885e 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-2.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-0-2.js @@ -4,12 +4,6 @@ /*--- es5id: 15.2.3.2-0-2 description: Object.getPrototypeOf must exist as a function taking 1 parameter -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf.length === 1) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf.length, 1, 'Object.getPrototypeOf.length'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-3.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-3.js index 88c4668294bf4caa4cc7472eb63cae3db77a629e..215e8f9b699ad026ea723d3aaca8f36ce84d1613 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-3.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-3.js @@ -4,10 +4,6 @@ /*--- es5id: 15.2.3.2-1-3 description: Object.getPrototypeOf returns Boolean.prototype if 'O' is a boolean -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.getPrototypeOf(true) === Boolean.prototype; -} -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(true), Boolean.prototype, 'Object.getPrototypeOf(true)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-4.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-4.js index eaba0ca0f4f0740cac26274147b720e67a9c92db..b6a1fbfe6711b88107e9bd8310c6559b3a802d6c 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-4.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1-4.js @@ -4,10 +4,6 @@ /*--- es5id: 15.2.3.2-1-4 description: Object.getPrototypeOf returns String.prototype if 'O' is a string -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.getPrototypeOf("abc") === String.prototype; -} -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf("abc"), String.prototype, 'Object.getPrototypeOf("abc")'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1.js index 5f685e81f9e4578c44c74fd1df5680076552126b..8d3805f4f8d936b58d61454b67c4c2ce9d2c4d0a 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-1.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-1.js @@ -4,10 +4,6 @@ /*--- es5id: 15.2.3.2-1 description: Object.getPrototypeOf returns Number.prototype if 'O' is a number -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.getPrototypeOf(0) === Number.prototype; -} -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(0), Number.prototype, 'Object.getPrototypeOf(0)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-1.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-1.js index 57ae4e112317a07d8fe9eed73ec951069963bd7c..84d841826040d7dad845f203d8264bd66b5c2a02 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-1.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-1.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-1 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Boolean) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Boolean) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Boolean), Function.prototype, 'Object.getPrototypeOf(Boolean)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-10.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-10.js index 83ee831d6cb132724d284156f71a5a2b03ccffc0..c12ef6bbc508c271c2fdaa9e0ccd71262d005954 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-10.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-10.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-10 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (RegExp) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(RegExp) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(RegExp), Function.prototype, 'Object.getPrototypeOf(RegExp)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-11.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-11.js index 76a3743df555cd9a83c063e378a83c0a28963631..adbbb32f6e34c74b1a1d0d4009d63774adbf4af8 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-11.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-11.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-11 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Error) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Error) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Error), Function.prototype, 'Object.getPrototypeOf(Error)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-12.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-12.js index 7a9a91cbaf7c74976bd959479924899489ab7bc9..d0a3598439cdf07c3a1c84ff7705a7d982b7ee78 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-12.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-12.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-12 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (EvalError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(EvalError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(EvalError), Error, 'Object.getPrototypeOf(EvalError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-13.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-13.js index 1d33936d65dfc0ddb0cce3ecec0c03f646b4e226..c8bb2ddd8af9667bcfa35a088b1a2ef01437f95d 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-13.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-13.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-13 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (RangeError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(RangeError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(RangeError), Error, 'Object.getPrototypeOf(RangeError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-14.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-14.js index c9d70daaeb759c7084d80e213303f11783857d7e..ce36232356f31e0109d7bc0264344dc036b98c77 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-14.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-14.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-14 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (ReferenceError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(ReferenceError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(ReferenceError), Error, 'Object.getPrototypeOf(ReferenceError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-15.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-15.js index 6743b86fd341b7c7e51c020ee3bca31ca14ecf68..b4f74461a1f9f9e99c928738605a72a3aaf7720f 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-15.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-15.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-15 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (SyntaxError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(SyntaxError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(SyntaxError), Error, 'Object.getPrototypeOf(SyntaxError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-16.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-16.js index 504c70f929dbe71a05632a7ea0bce63a1d7b1dbe..1041acbf5ba284595b4152912e3acab709372e55 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-16.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-16.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-16 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (TypeError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(TypeError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(TypeError), Error, 'Object.getPrototypeOf(TypeError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-17.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-17.js index f38389f7b0cde75aa2fd743c04febebfde18a10a..97b6ac4c83d5f76606ea5899131f80ca97bd9b0f 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-17.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-17.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-17 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (URIError) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(URIError) === Error) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(URIError), Error, 'Object.getPrototypeOf(URIError)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-18.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-18.js index 6642df79f2bea41e4a289709fbf16a2d04410fca..658a9985534bc2ca450d357b40571f5f446c2f9b 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-18.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-18.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-18 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (JSON) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(JSON) === Object.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(JSON), Object.prototype, 'Object.getPrototypeOf(JSON)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-19.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-19.js index 12b6c7f8251f6351775b1871eadbf28bea50c5e5..c0e3b2b899f185f56d8bf6bbcd42804c789c41fb 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-19.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-19.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-19 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Object object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = {}; - return Object.getPrototypeOf(obj) === Object.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Object.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-2.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-2.js index 1964ebedaa0ad38f602b293a87a61e73f9cc0618..753ca87a106040ecc0712f7a5317edec3fe95f92 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-2.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-2.js @@ -9,10 +9,8 @@ es5id: 15.2.3.2-2-2 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (custom object) -includes: [runTestCase.js] ---*/ -function testcase() { function base() {} function derived() {} @@ -20,8 +18,5 @@ function testcase() { var d = new derived(); var x = Object.getPrototypeOf(d); - if (x.isPrototypeOf(d) === true) { - return true; - } - } -runTestCase(testcase); + +assert.sameValue(x.isPrototypeOf(d), true, 'x.isPrototypeOf(d)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-20.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-20.js index 8440a85c76e1c439060d472d00597685746f78f2..062f7af14810dccb312dabd78a66465b5beeb377 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-20.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-20.js @@ -6,14 +6,10 @@ es5id: 15.2.3.2-2-20 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Function Object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = function (a, b) { return a + b; }; - return Object.getPrototypeOf(obj) === Function.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Function.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-21.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-21.js index 0609c513271414bc831a84c7c45334b2e450a812..8652973e531ed1e45d4d7276c57268525cf70cf9 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-21.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-21.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-21 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Array object) -includes: [runTestCase.js] ---*/ -function testcase() { var arr = [1, 2, 3]; - return Object.getPrototypeOf(arr) === Array.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(arr), Array.prototype, 'Object.getPrototypeOf(arr)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-22.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-22.js index c43465463eb0c852fc6fdd71287b1acec72adc57..13d845f54396700db3b9e7e0855e2c556557a0c7 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-22.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-22.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-22 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (String object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new String("abc"); - return Object.getPrototypeOf(obj) === String.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), String.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-23.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-23.js index 2f007b3117d3e3ad08caff1083b19e4192f9cf5c..7b825d970223e4cb4300d06cdc1a1bf591a79de8 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-23.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-23.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-23 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Boolean object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new Boolean(true); - return Object.getPrototypeOf(obj) === Boolean.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Boolean.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-24.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-24.js index 5f5df102f91094eff2fbc8565b0437c0567afa04..8a0759e13b065422e393304d801ac94ef3797720 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-24.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-24.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-24 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Number object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new Number(-3); - return Object.getPrototypeOf(obj) === Number.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Number.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-25.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-25.js index 4e6224b95bbcb60b712ae7f026dbcc57c6751d98..0c47078819f92bf8e2f393c231148a89dd0e4f53 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-25.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-25.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-25 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Date object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new Date(); - return Object.getPrototypeOf(obj) === Date.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Date.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-26.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-26.js index 314744696fbb150ff9d86a7bca20924f57d773a7..7b033a2ca0116b0b803cca518e80c29217e1e9eb 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-26.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-26.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-26 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (RegExp object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new RegExp(); - return Object.getPrototypeOf(obj) === RegExp.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), RegExp.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-27.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-27.js index 25dab3f6d83d7bbb47cddb3392ad9a6c560a6716..9851559ac64707638d3ccd41976e69fb2db81927 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-27.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-27.js @@ -6,12 +6,8 @@ es5id: 15.2.3.2-2-27 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Error object) -includes: [runTestCase.js] ---*/ -function testcase() { var obj = new Error(); - return Object.getPrototypeOf(obj) === Error.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Error.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-28.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-28.js index 8a23c436d3ca67c4ea9f682819ae45d3ab11276f..a10b2bbaadbc75147342d493d156eb004a8661d3 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-28.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-28.js @@ -6,15 +6,11 @@ es5id: 15.2.3.2-2-28 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (the Arguments object) -includes: [runTestCase.js] ---*/ -function testcase() { function fun() { return arguments; } var obj = fun(1, true, 3); - return Object.getPrototypeOf(obj) === Object.prototype; - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(obj), Object.prototype, 'Object.getPrototypeOf(obj)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-3.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-3.js index 7bd2eac42f42383c14546dc3c6e7c6fdfdadaca4..2723e7fe330e3300bf2b6e1315b2552c1de1cf14 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-3.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-3.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-3 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Object) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Object) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Object), Function.prototype, 'Object.getPrototypeOf(Object)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-30.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-30.js index 8595b6cb2915215213f538cce44e48be0c924e97..dceac26413ed3be6502d95c9ccd5fb6a35445af5 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-30.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-30.js @@ -6,14 +6,9 @@ es5id: 15.2.3.2-2-30 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (the global object) -includes: - - runTestCase.js - - fnGlobalObject.js +includes: [fnGlobalObject.js] ---*/ -function testcase() { var proto = Object.getPrototypeOf(fnGlobalObject()); - return proto.isPrototypeOf(fnGlobalObject()) === true; - } -runTestCase(testcase); +assert.sameValue(proto.isPrototypeOf(fnGlobalObject()), true, 'proto.isPrototypeOf(fnGlobalObject())'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-31.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-31.js index 138e645d46c7fbc0f6f0065576932af14c52fc53..a2900e319d3148e6c4e288b5d38d3a63b59bfb52 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-31.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-31.js @@ -4,11 +4,6 @@ /*--- es5id: 15.2.3.2-2-31 description: Object.getPrototypeOf returns null -includes: [runTestCase.js] ---*/ -function testcase() { - - return (Object.getPrototypeOf(Object.prototype) === null); - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Object.prototype), null, 'Object.getPrototypeOf(Object.prototype)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-4.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-4.js index 571f61685eb08110dbd69fb27031ff4eeeb30283..83f4a4fccda764699a9577327c69ca593e38d3bb 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-4.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-4.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-4 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Function) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Function) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Function), Function.prototype, 'Object.getPrototypeOf(Function)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-5.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-5.js index ad732991fddc6ca0b4d122fd8464d5352b1db7be..6dde8d3bddbb1b636aff9d3b2241094720132a2c 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-5.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-5.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-5 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Array) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Array) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Array), Function.prototype, 'Object.getPrototypeOf(Array)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-6.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-6.js index b93328b4d23daaf340aab2df0fe1589158f65312..1c16be4ee2e013bd4a373e8d9f3539cd0a50edad 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-6.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-6.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-6 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (String) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(String) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(String), Function.prototype, 'Object.getPrototypeOf(String)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-7.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-7.js index 5e8786c61e8df9b63b5320c9fad7461bbf1f0cb0..401883c897b38e97697c9c6d5fca165e343cabe3 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-7.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-7.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-7 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Number) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Number) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Number), Function.prototype, 'Object.getPrototypeOf(Number)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-8.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-8.js index ee3d1b22b06079c9810b3ac1db630e9b918b5eaf..fc58a6aed4bce09c2f3678c5b7cadb502e9c1ddc 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-8.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-8.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-8 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Math) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Math) === Object.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Math), Object.prototype, 'Object.getPrototypeOf(Math)'); diff --git a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-9.js b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-9.js index da16d71bd714e124ddf1c967f3965a5c4f25ce45..95adcaa5e1c1bd4035f0e8883d1078f3a3bd391d 100644 --- a/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-9.js +++ b/test/built-ins/Object/getPrototypeOf/15.2.3.2-2-9.js @@ -6,12 +6,6 @@ es5id: 15.2.3.2-2-9 description: > Object.getPrototypeOf returns the [[Prototype]] of its parameter (Date) -includes: [runTestCase.js] ---*/ -function testcase() { - if (Object.getPrototypeOf(Date) === Function.prototype) { - return true; - } - } -runTestCase(testcase); +assert.sameValue(Object.getPrototypeOf(Date), Function.prototype, 'Object.getPrototypeOf(Date)'); diff --git a/test/built-ins/Object/prototype/15.2.3.1.js b/test/built-ins/Object/prototype/15.2.3.1.js index 905d9fda3d517c8e3d311a00018a5ca40de16896..fb0ddee7f02de1aadc1da74ab29c56fab27e5b15 100644 --- a/test/built-ins/Object/prototype/15.2.3.1.js +++ b/test/built-ins/Object/prototype/15.2.3.1.js @@ -6,15 +6,10 @@ es5id: 15.2.3.1 description: > Object.prototype is a data property with default attribute values (false) -includes: [runTestCase.js] ---*/ -function testcase() { var desc = Object.getOwnPropertyDescriptor(Object, 'prototype'); - if (desc.writable === false && - desc.enumerable === false && - desc.configurable === false) { - return true; - } - } -runTestCase(testcase); + +assert.sameValue(desc.writable, false, 'desc.writable'); +assert.sameValue(desc.enumerable, false, 'desc.enumerable'); +assert.sameValue(desc.configurable, false, 'desc.configurable'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_1.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_1.js index 740b332c2b397782543c96541eb6522aaf10355b..29e82458769f8ab538c2431128d8d047968fdd99 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_1.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_1.js @@ -4,13 +4,8 @@ /*--- es5id: 8.12.1-1_1 description: Properties - [[HasOwnProperty]] (property does not exist) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_10.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_10.js index 7a952e20957b4d30ae04408bc956a86d6c31c8ee..0e5e905e3aa9c86b528a0f06d52fb4a536350ec3 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_10.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_10.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_10 description: > Properties - [[HasOwnProperty]] (writable, configurable, non-enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, writable:true, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_11.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_11.js index c727864a8b5b49417a9a84e0b0395a04b58cbde6..d4f3d39034abdafc9be518eaabccb32c83e65dc3 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_11.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_11.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_11 description: > Properties - [[HasOwnProperty]] (writable, configurable, enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, writable:true, enumerable:true, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_12.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_12.js index 61430376a96e8fc9436b39920a77d5fbe1861675..99004855e560868d59eed74f3676ac0210514428 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_12.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_12.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_12 description: > Properties - [[HasOwnProperty]] (non-writable, non-configurable, non-enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_13.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_13.js index 8d28021a0cb5c63a3464c0b81a1f6ccfc070c6e4..c12d0c3440142f96529ad6c3daa7f127a0f24f6d 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_13.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_13.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_13 description: > Properties - [[HasOwnProperty]] (non-writable, non-configurable, enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_14.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_14.js index c0044b7ae2bb0e47d7c21bf8c218b0abb5a644d2..0dcb8a61a1c4dd3c732a39fbe94b9097741b5344 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_14.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_14.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_14 description: > Properties - [[HasOwnProperty]] (non-writable, configurable, non-enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js index 9882fc30419e25b2a4d6951ddfc5538d66ef6dc2..54baa8f1a408e25b3fd52668f1af34e80f3da7a0 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_15.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_15 description: > Properties - [[HasOwnProperty]] (writable, non-configurable, non-enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, writable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_16.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_16.js index b50b015dfd535875689ab4f5d47ff6a9b8eca3c0..6474f7f8091c15ea13db2a3fa5691d51cfa855f0 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_16.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_16.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_16 description: > Properties - [[HasOwnProperty]] (non-writable, configurable, enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, configurable:true, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_17.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_17.js index cbb545f8002a5fe440c16e2a105054324577dac1..ac6c14ab3876be81ca82269275bfd33cca35b578 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_17.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_17.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_17 description: > Properties - [[HasOwnProperty]] (writable, non-configurable, enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, writable:true, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_18.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_18.js index ac3d45e673e2e2e0cfadc8cdafb7517dbaad945b..8b8120c5ce04b08dda42d6c374815b43fb565240 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_18.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_18.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_18 description: > Properties - [[HasOwnProperty]] (writable, configurable, non-enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, writable:true, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_19.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_19.js index 2afc809f3083713fc59752a733e7b5eae03e93df..6eec46644eb40713f006baeb2a18ba46312efab8 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_19.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_19.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_19 description: > Properties - [[HasOwnProperty]] (writable, configurable, enumerable inherited value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {value: 42, writable:true, enumerable:true, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_2.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_2.js index 3fd23a59fa03b38264784fd3a0c8c2310444ae9f..9e51b6eb9c946fef9fe9bed7f8c6f994f59daab3 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_2.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_2.js @@ -4,13 +4,8 @@ /*--- es5id: 8.12.1-1_2 description: Properties - [[HasOwnProperty]] (old style own property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {foo: 42}; - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_20.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_20.js index 4c317ce8a311b320b4fe05cb332998ed550707f8..4c6c466f3ab69ec92c43cc5a890714edc9e394a8 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_20.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_20.js @@ -4,13 +4,8 @@ /*--- es5id: 8.12.1-1_20 description: Properties - [[HasOwnProperty]] (literal own getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = { get foo() { return 42;} }; - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_21.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_21.js index e0378aba25635cd19ea1c30b2e905f315e43dc72..aa8236e3bcdfdd8c1af90f2273e2045f6b52996b 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_21.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_21.js @@ -4,13 +4,8 @@ /*--- es5id: 8.12.1-1_21 description: Properties - [[HasOwnProperty]] (literal own setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = { set foo(x) {;} }; - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_22.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_22.js index aec7dec5dfaacf69a9ca5933167fce48033bfea2..b23a22bfc3fa3078891b5c34c72f3299f158c786 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_22.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_22.js @@ -6,13 +6,8 @@ es5id: 8.12.1-1_22 description: > Properties - [[HasOwnProperty]] (literal own getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = { get foo() { return 42;}, set foo(x) {;} }; - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_23.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_23.js index 7fe6e85ef78d0de38d5ac5c2e83e1f6aa35ed6e2..4e2587b1c1a35857c367355f9c5134801378dbb6 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_23.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_23.js @@ -4,14 +4,9 @@ /*--- es5id: 8.12.1-1_23 description: Properties - [[HasOwnProperty]] (literal inherited getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = { get foo() { return 42;} }; var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_24.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_24.js index 59a8f25bc2b1e2738cf3643b28c624089eccea40..cf1cac60b222b4256639be23753c78af80bace0c 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_24.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_24.js @@ -4,14 +4,9 @@ /*--- es5id: 8.12.1-1_24 description: Properties - [[HasOwnProperty]] (literal inherited setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = { set foo(x) {;} }; var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_25.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_25.js index 6e07b92a2e1a1924e7a4d8dcdf3541653cf6a827..fdb1e6d3a4efef643d654db763bc02f0a2a55a0b 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_25.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_25.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_25 description: > Properties - [[HasOwnProperty]] (literal inherited getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = { get foo() { return 42;}, set foo(x) {;} }; var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_26.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_26.js index 79cf21fda29125cc1cb7f4cd7c50fcf086cb3326..fd15435b5c41afcffac76c7d14a9ed5b957c7c53 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_26.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_26.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_26 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable own getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_27.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_27.js index 83d6f6ae8d50674ae801f78dfb577a5bee16a9de..6d8b4634de70da69f408e2617171f75ab6557e3f 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_27.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_27.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_27 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable own getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_28.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_28.js index 9ff6d79880a7e81f5e1fe5962e73aae86c715ada..19bcb8142d8849ae9dcccc8eb8fd3e69493a8060 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_28.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_28.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_28 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable own getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_29.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_29.js index 9fc23c5991a45d6e204e1e5f836cb78b2fe08969..01587705d137915b778e3955711361944a67790a 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_29.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_29.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_29 description: > Properties - [[HasOwnProperty]] (configurable, enumerable own getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, enumerable:true, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_3.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_3.js index 63c51f98604f00df2eeb1a044405fe9b7cf7bce2..8c851da5a0248d1a57984c74fd31120d77ff8013 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_3.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_3.js @@ -4,14 +4,9 @@ /*--- es5id: 8.12.1-1_3 description: Properties - [[HasOwnProperty]] (old style inherited property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {foo:42}; var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_30.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_30.js index 5d5eeecfb79bd0f5f20f49611476c12000840d1a..5d12f52ff7f2a5b433101e2b0aa2a806f91c9826 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_30.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_30.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_30 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable own setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {set: function() {;}}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_31.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_31.js index 16d5d9a07c1a1a4d557e2b6f38a3efae4046a67f..0e9e305753267856d7acc9a8264debe3aa3fb3db 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_31.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_31.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_31 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable own setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {set: function() {;}, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_32.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_32.js index 0e6a204f88cd2ba658d169778af5da9466fab27b..f0a345b0be18f2d20ab6cf937d5e0434f51f2b1e 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_32.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_32.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_32 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable own setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {set: function() {;}, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_33.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_33.js index 22df230743061ecd6b1dba10aa3cb1b2ed72cffa..1b7e60c21ad98ebdad68fc6335a9d8508d874522 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_33.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_33.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_33 description: > Properties - [[HasOwnProperty]] (configurable, enumerable own setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {set: function() {;}, enumerable:true, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_34.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_34.js index a915b5101e80358899268ede5302f0e9080c29e4..2b34bf9b6201088f216b59a4cc88305d1169bdc0 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_34.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_34.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_34 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable own getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, set: function() {;}}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_35.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_35.js index 29f0e5822e1824abecddf67c963949fcd902ee29..01ef0ead2d0eca4ac81affd78a5804f9a688b05f 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_35.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_35.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_35 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable own getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, set: function() {;}, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_36.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_36.js index 918f4617f3c180c63062492aed65635659eb1d86..a077628697d2c641d9958861e32177479231f396 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_36.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_36.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_36 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable own getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, set: function() {;}, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_37.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_37.js index c9fd7a8525dd3eccdb902c4097036342672c2b1e..1938b5a2c53c87a4c3ab773e9b2adb9608b5f1ab 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_37.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_37.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_37 description: > Properties - [[HasOwnProperty]] (configurable, enumerable own getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {get: function() {return 42;}, set: function() {;}, enumerable:true, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_38.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_38.js index dc8a53bde295fba47a9c3c1b7f7997bc949c98f7..801ecdaeed802e897f29fca9bb00d51c1d789730 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_38.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_38.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_38 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable inherited getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_39.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_39.js index 5ff0e64dfe20855c8ee31b1816d615155eca5348..5a0e15903c13daf02c772bbb1f0aa60d3eb7e5b6 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_39.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_39.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_39 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable inherited getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_4.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_4.js index 892f684078d16e74f94595582f041a21dac3beff..dac63b0297a994b717329b5978dcb1ae30e715d5 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_4.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_4.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_4 description: > Properties - [[HasOwnProperty]] (non-writable, non-configurable, non-enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_40.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_40.js index d73fd07d385cd81e575ab90db12e83eed29612e1..a04fd436964cfcccf5788d452147f5090b65e574 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_40.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_40.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_40 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable inherited getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_41.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_41.js index 4b53d9ad6165108bd46309cb9a2559fdadc9ae25..bf0dbd47daa4093e912d2824045867a83175d1bf 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_41.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_41.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_41 description: > Properties - [[HasOwnProperty]] (configurable, enumerable inherited getter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, enumerable:true, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_42.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_42.js index 6b1c1f6f6b2d467f7c4add8a1e3d007c984f67a5..97bab311fc8ce2505194cfe610a5e7cae790ecfd 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_42.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_42.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_42 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable inherited setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {set: function() {;}}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_43.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_43.js index 9648fe37fbad27f672761fa56fdf1be362fb5e4a..baa392b1fd8bc1940d07412079530e72ea38f79d 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_43.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_43.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_43 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable inherited setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {set: function() {;}, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_44.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_44.js index d5809d6a63b2c53e313b338c644f9c843501482d..07b368234ad1dd79b4fd6aeca9ac317edfb31593 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_44.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_44.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_44 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable inherited setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {set: function() {;}, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_45.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_45.js index 7f160904797171daf47b7cced412caf25152f61b..68c0517ccb46b5f4577372ebc39da5223251c7a0 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_45.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_45.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_45 description: > Properties - [[HasOwnProperty]] (configurable, enumerable inherited setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {set: function() {;}, enumerable:true, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_46.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_46.js index 6ab9572e9136e1b4f0fd3f35fec79d4defcff755..1ff589a9b7f71ee4fb075f3e473573eac0e45fa3 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_46.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_46.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_46 description: > Properties - [[HasOwnProperty]] (non-configurable, non-enumerable inherited getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, set: function() {;}}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_47.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_47.js index a2f40e01c8027fd8f7cdf0b8033bfb8063d7ddab..16bc5d71b5002c7c6ca79b9f9f403b7c091eff09 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_47.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_47.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_47 description: > Properties - [[HasOwnProperty]] (non-configurable, enumerable inherited getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, set: function() {;}, enumerable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_48.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_48.js index 2574083c91bc749b8acaa07a88ad16418c189d63..0a9c741ff3f4419292a61e7c348e4cf16dc9eb0e 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_48.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_48.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_48 description: > Properties - [[HasOwnProperty]] (configurable, non-enumerable inherited getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, set: function() {;}, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_49.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_49.js index 52f1a538bb6749343de157e13b183d9ea6dc95af..d492e9ee878198ccf86846f1af4e8f2afd950e21 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_49.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_49.js @@ -6,15 +6,10 @@ es5id: 8.12.1-1_49 description: > Properties - [[HasOwnProperty]] (configurable, enumerable inherited getter/setter property) -includes: [runTestCase.js] ---*/ -function testcase() { - var base = {}; Object.defineProperty(base, "foo", {get: function() {return 42;}, set: function() {;}, enumerable:true, configurable:true}); var o = Object.create(base); - return o.hasOwnProperty("foo")===false; -} -runTestCase(testcase); +assert.sameValue(o.hasOwnProperty("foo"), false, 'o.hasOwnProperty("foo")'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_5.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_5.js index f8d4525dce7a902ad640075abfe6b39db6761407..19d6229e93af425b3add4b2d663a499cb01ea49a 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_5.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_5.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_5 description: > Properties - [[HasOwnProperty]] (non-writable, non-configurable, enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_6.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_6.js index 31a9a83cba735a3fb31ed8abc39f3b39d33e76bc..76bd5649c07227cf42d8b487bebb9bc4097df173 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_6.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_6.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_6 description: > Properties - [[HasOwnProperty]] (non-writable, configurable, non-enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, configurable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_7.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_7.js index 0e50a6990884b6ce708184b8a2be7ac27d5fddf6..8c6ea68847e086ab8d67bc997928969fa165e288 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_7.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_7.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_7 description: > Properties - [[HasOwnProperty]] (writable, non-configurable, non-enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, writable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_8.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_8.js index 12cfec2b714cccbec7467ba76f51c076cf6a539d..384f1c801e8f6388a808605f22592f3d11065579 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_8.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_8.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_8 description: > Properties - [[HasOwnProperty]] (non-writable, configurable, enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, configurable:true, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_9.js b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_9.js index 478fcbf0da307a0b6b4e35a3e90e2532732536d0..e17903b7c05edec80a3a8743d9897fa9778a60ac 100644 --- a/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_9.js +++ b/test/built-ins/Object/prototype/hasOwnProperty/8.12.1-1_9.js @@ -6,14 +6,9 @@ es5id: 8.12.1-1_9 description: > Properties - [[HasOwnProperty]] (writable, non-configurable, enumerable own value property) -includes: [runTestCase.js] ---*/ -function testcase() { - var o = {}; Object.defineProperty(o, "foo", {value: 42, writable:true, enumerable:true}); - return o.hasOwnProperty("foo"); -} -runTestCase(testcase); +assert(o.hasOwnProperty("foo"), 'o.hasOwnProperty("foo") !== true'); diff --git a/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js b/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js index 9e7131ac4245af1b1eb88bcc768bf569f87e92ee..801dfbaf698729ba984bf331284ad62dbead6a00 100644 --- a/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js +++ b/test/built-ins/Object/prototype/toString/15.2.4.2-1-1.js @@ -6,10 +6,6 @@ es5id: 15.2.4.2-1-1 description: > Object.prototype.toString - '[object Undefined]' will be returned when 'this' value is undefined -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.prototype.toString.call(undefined) === "[object Undefined]"; - } -runTestCase(testcase); +assert.sameValue(Object.prototype.toString.call(undefined), "[object Undefined]", 'Object.prototype.toString.call(undefined)'); diff --git a/test/built-ins/Object/prototype/toString/15.2.4.2-1-2.js b/test/built-ins/Object/prototype/toString/15.2.4.2-1-2.js index bcec70206344204e409c2422b33f221b4fb00fc9..c6daf2500040e36dd887d325d32b618408c1bdff 100644 --- a/test/built-ins/Object/prototype/toString/15.2.4.2-1-2.js +++ b/test/built-ins/Object/prototype/toString/15.2.4.2-1-2.js @@ -6,10 +6,6 @@ es5id: 15.2.4.2-1-2 description: > Object.prototype.toString - '[object Undefined]' will be returned when 'this' value is undefined -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.prototype.toString.apply(undefined, []) === "[object Undefined]"; - } -runTestCase(testcase); +assert.sameValue(Object.prototype.toString.apply(undefined, []), "[object Undefined]", 'Object.prototype.toString.apply(undefined, [])'); diff --git a/test/built-ins/Object/prototype/toString/15.2.4.2-2-1.js b/test/built-ins/Object/prototype/toString/15.2.4.2-2-1.js index 6bc291ddb1cdabb4df8a18fdc169ec7ce7a0dcca..ee6120a79feb0cea4e98b46466f5d7581f9ca2d7 100644 --- a/test/built-ins/Object/prototype/toString/15.2.4.2-2-1.js +++ b/test/built-ins/Object/prototype/toString/15.2.4.2-2-1.js @@ -6,10 +6,6 @@ es5id: 15.2.4.2-2-1 description: > Object.prototype.toString - '[object Null]' will be returned when 'this' value is null -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.prototype.toString.call(null) === "[object Null]"; - } -runTestCase(testcase); +assert.sameValue(Object.prototype.toString.call(null), "[object Null]", 'Object.prototype.toString.call(null)'); diff --git a/test/built-ins/Object/prototype/toString/15.2.4.2-2-2.js b/test/built-ins/Object/prototype/toString/15.2.4.2-2-2.js index 5f0f42dc6c75592d9bbc1f947d57fb45936ab627..194597ab0b2ab25805041960616d991a5c77b771 100644 --- a/test/built-ins/Object/prototype/toString/15.2.4.2-2-2.js +++ b/test/built-ins/Object/prototype/toString/15.2.4.2-2-2.js @@ -6,10 +6,6 @@ es5id: 15.2.4.2-2-2 description: > Object.prototype.toString - '[object Null]' will be returned when 'this' value is null -includes: [runTestCase.js] ---*/ -function testcase() { - return Object.prototype.toString.apply(null, []) === "[object Null]"; - } -runTestCase(testcase); +assert.sameValue(Object.prototype.toString.apply(null, []), "[object Null]", 'Object.prototype.toString.apply(null, [])'); diff --git a/test/built-ins/Object/prototype/valueOf/15.2.4.4-1.js b/test/built-ins/Object/prototype/valueOf/15.2.4.4-1.js index e4dff48e11c5c1195abbcd3e30aa1e3d2a1cf271..8686aab858acb19d5190a201fdfa0f3166dad6eb 100644 --- a/test/built-ins/Object/prototype/valueOf/15.2.4.4-1.js +++ b/test/built-ins/Object/prototype/valueOf/15.2.4.4-1.js @@ -6,10 +6,6 @@ es5id: 15.2.4.4-1 description: > Object.prototype.valueOf - typeof Object.prototype.valueOf.call(true)==="object" -includes: [runTestCase.js] ---*/ -function testcase() { - return (typeof Object.prototype.valueOf.call(true)) === "object"; -} -runTestCase(testcase); +assert.sameValue(typeof Object.prototype.valueOf.call(true), "object", 'typeof Object.prototype.valueOf.call(true)'); diff --git a/test/built-ins/Object/prototype/valueOf/15.2.4.4-2.js b/test/built-ins/Object/prototype/valueOf/15.2.4.4-2.js index 8a216344d42cef93ef0660760e6c72ce5d78b8ec..bab367e171eb8cc8a5de0c4f4334bd4be7df4e95 100644 --- a/test/built-ins/Object/prototype/valueOf/15.2.4.4-2.js +++ b/test/built-ins/Object/prototype/valueOf/15.2.4.4-2.js @@ -6,10 +6,6 @@ es5id: 15.2.4.4-2 description: > Object.prototype.valueOf - typeof Object.prototype.valueOf.call(false)==="object" -includes: [runTestCase.js] ---*/ -function testcase() { - return (typeof Object.prototype.valueOf.call(false)) === "object"; -} -runTestCase(testcase); +assert.sameValue(typeof Object.prototype.valueOf.call(false), "object", 'typeof Object.prototype.valueOf.call(false)');