test262/test/intl402/Segmenter
Philip Chimento d87a7da6e1 Replace Object.hasOwnProperty.call with Object.prototype.hasOwnProperty.call
While we're at it, use assert() instead of assert.sameValue() for brevity,
if we are not specifically testing that the return value of hasOwnProperty
is the value true or false; and add more informative assertion messages to
help with debugging.

In some cases, the Object.hasOwnProperty.call could be replaced with
verifyProperty(), if the property descriptor was also being verified at
the same time.

This fixes some tests that were faulty to begin with: a common mistake was
Object.hasOwnProperty(obj, prop) which is probably going to return false
when that's not what you want.

The only instances left of `Object.hasOwnProperty` are one regression test
in implementation-contributed which I can't tell if it was intentionally
needed to trigger the regression, and a few instances of
`Object.hasOwnProperty('prototype')` which would defeat the purpose to
convert into `Object.prototype.hasOwnProperty.call(Object, 'prototype')`
form.

Closes: #3524
2022-11-30 16:04:02 -08:00
..
constructor Replace Object.hasOwnProperty.call with Object.prototype.hasOwnProperty.call 2022-11-30 16:04:02 -08:00
instance Intl.Segmenter: Some initial tests. (#1844) 2018-10-15 11:29:25 -04:00
prototype Relax tests for resolvedOptions property ordering 2021-10-29 15:19:27 -04:00
ctor-custom-get-prototype-poison-throws.js Update test/intl402/Segmenter/ctor-custom-get-prototype-poison-throws.js 2020-09-10 16:08:39 -04:00
ctor-custom-prototype.js Add more tests for Intl.Segmenter 2020-09-10 16:08:39 -04:00
ctor-default-prototype.js Add more tests for Intl.Segmenter 2020-09-10 16:08:39 -04:00
proto-from-ctor-realm.js Address review comments 2020-09-10 16:08:39 -04:00