blob: aec783cc5aa82bad47b90891c3d62e57c6ef20e1 [file] [log] [blame]
// Copyright (C) 2017 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
The first argument should have an own property
includes: [propertyHelper.js,sta.js]
---*/
assert.throws(Test262Error, () => {
verifyProperty(Object, 'JeanPaulSartre', {});
}, "inexisting property");
assert.throws(Test262Error, () => {
verifyProperty({}, 'hasOwnProperty', {});
}, "inexisting own property");