summaryrefslogtreecommitdiff
path: root/test/harness/assert-samevalue-same.js
blob: 0e38a9cef7b7b1bae31fd8548ecad6f64356ef05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 strictly equal satisfy the assertion.
---*/
var obj;

assert.sameValue(undefined, undefined);
assert.sameValue(null, null);
assert.sameValue(0, 0);
assert.sameValue(1, 1);
assert.sameValue('', '');
assert.sameValue('s', 's');

obj = {};
assert.sameValue(obj, obj);