2017-04-15 18:56:29 +02:00
|
|
|
// Copyright (C) 2017 Leo Balter. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
description: >
|
|
|
|
verifyProperty should receive at least 3 arguments: obj, name, and descriptor
|
2017-06-23 03:25:35 +02:00
|
|
|
includes: [propertyHelper.js,sta.js]
|
2017-04-15 18:56:29 +02:00
|
|
|
---*/
|
|
|
|
assert.throws(Test262Error, () => {
|
|
|
|
verifyProperty();
|
|
|
|
}, "0 arguments");
|
|
|
|
|
|
|
|
assert.throws(Test262Error, () => {
|
|
|
|
verifyProperty(Object);
|
|
|
|
}, "1 argument");
|
|
|
|
|
|
|
|
assert.throws(Test262Error, () => {
|
|
|
|
verifyProperty(Object, 'foo');
|
|
|
|
}, "2 arguments");
|