Create an assert.compareArray

This is a convenience function which tries to make tests easier
to read and write.
This commit is contained in:
Daniel Ehrenberg 2017-04-25 16:06:15 +02:00 committed by Leo Balter
parent bfc9020d51
commit 8cb7f59395
No known key found for this signature in database
GPG Key ID: 2C75F319D398E36B
1 changed files with 14 additions and 0 deletions

View File

@ -13,3 +13,17 @@ function compareArray(a, b) {
return true;
}
assert.compareArray = function(actual, expected, message) {
if (compareArray(actual, expected)) return;
if (message === undefined) {
message = '';
} else {
message += ' ';
}
message += 'Expected SameValue(«' + String(actual) + '», «' + String(expected) + '») to be true';
$ERROR(`${message}${message === undefined ? '' : ' '}Expected the arrays [${actual}] to have the same contents as [${expected}]`);
}