The method findArray takes two parameters, smallArray and largeArray, both are arrays of characters. The method returns 1 if smallArray is not found contiguously in largeArray, otherwise it returns...

The method findArray takes two parameters, smallArray and largeArray, both are arrays of characters. The method returns 1 if smallArray is not found contiguously in largeArray, otherwise it returns the position in largeArray at which smallArray starts. For example, findArray({‘b’, ‘d’}, {‘a’, ‘b’, ‘c’, ‘d’, ‘e’}) returns 1. However, findArray({‘b’, ‘c’}, {‘m’, ‘a’, ‘b’, ‘c’, ‘d’, ‘e’}) returns 2. Write a test plan to test an implementation of this method using boundary value analysis and equivalence class testing.



May 26, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here