1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
compareArray gracefully handles nullish arguments.
includes: [compareArray.js]
---*/
function assertThrows(func, errorMessage) {
var caught = false;
try {
func();
} catch (error) {
caught = true;
assert.sameValue(error.constructor, Test262Error);
assert.sameValue(error.message, errorMessage);
}
assert(caught, `Expected ${func} to throw, but it didn't.`);
}
assertThrows(() => assert.compareArray(), "First argument shouldn't be nullish. ");
assertThrows(() => assert.compareArray(null, []), "First argument shouldn't be nullish. ");
assertThrows(() => assert.compareArray(null, [], "foo"), "First argument shouldn't be nullish. foo");
assertThrows(() => assert.compareArray([]), "Second argument shouldn't be nullish. ");
assertThrows(() => assert.compareArray([], undefined, "foo"), "Second argument shouldn't be nullish. foo");
reportCompare(0, 0);
|