public void BinarySearchMethod_array10_5_returned_5()
        {
            int[]     array       = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
            int       searchValue = 5;
            const int expected    = 5;

            int actual = _binarySearch.BinarySearchMethod(array, searchValue);

            Assert.AreEqual(expected, actual);
        }