Skip to content
Snippets Groups Projects
Commit 27f3452b authored by Rick Waldron's avatar Rick Waldron
Browse files

harness test: arrayContains.js

parent c9f3ab56
No related branches found
No related tags found
No related merge requests found
//----------------------------------------------------------------------------- /**
function arrayContains(arr, expected) { * Verify that a subArray is contained within an array.
*
* @param {Array} array
* @param {Array} array
*/
function arrayContains(array, subArray) {
var found; var found;
for (var i = 0; i < expected.length; i++) { for (var i = 0; i < subArray.length; i++) {
found = false; found = false;
for (var j = 0; j < arr.length; j++) { for (var j = 0; j < array.length; j++) {
if (expected[i] === arr[j]) { if (subArray[i] === array[j]) {
found = true; found = true;
break; break;
} }
......
// Copyright (c) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Assert that the contents of an array contains another array as a slice or sub-array
includes: [arrayContains.js]
---*/
const willMatch = [0, 1, 2];
assert(arrayContains([0, 1, 2, 3], willMatch));
assert(arrayContains([null, 0, 1, 2, 3], willMatch));
assert(arrayContains([undefined, 0, 1, 2, 3], willMatch));
assert(arrayContains([false, 0, 1, 2, 3], willMatch));
assert(arrayContains([NaN, 0, 1, 2, 3], willMatch));
const willNotMatch = [1, 0, 2];
assert(!arrayContains([1, /* intentional hole */, 2], willNotMatch), '[1, /* intentional hole */, 2], willNotMatch)');
assert(!arrayContains([1, null, 2], willNotMatch), '[1, null, 2], willNotMatch)');
assert(!arrayContains([1, undefined, 2], willNotMatch), '[1, undefined, 2], willNotMatch)');
assert(!arrayContains([1, false, 2], willNotMatch), '[1, false, 2], willNotMatch)');
assert(!arrayContains([1, NaN, 2], willNotMatch), '[1, NaN, 2], willNotMatch)');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment