Esempio n. 1
0
        public void BinarySearchForlastElementTest(int[] input, int srh, int expectedOutput)
        {
            var output = Miscellaneous.BinarySearchForlastElement(input, srh);

            Assert.AreEqual(expectedOutput, output);
        }