diff options
Diffstat (limited to 'js/src/tests/test262/harness/assert-notsamevalue-notsame.js')
-rw-r--r-- | js/src/tests/test262/harness/assert-notsamevalue-notsame.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/assert-notsamevalue-notsame.js b/js/src/tests/test262/harness/assert-notsamevalue-notsame.js new file mode 100644 index 0000000000..0b7188c4ad --- /dev/null +++ b/js/src/tests/test262/harness/assert-notsamevalue-notsame.js @@ -0,0 +1,16 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Values that are not strictly equal satisfy the assertion. +---*/ + +assert.notSameValue(undefined, null); +assert.notSameValue(null, undefined); +assert.notSameValue(0, 1); +assert.notSameValue(1, 0); +assert.notSameValue('', 's'); +assert.notSameValue('s', ''); + +reportCompare(0, 0); |