public void TestArrayMax()
        {
            //setup variables
            int[] array = { 32, 56, 42, 32, 5, 67, 78, 0, 19992, 4 };

            Algorithms arrayMax = new Algorithms();

            Assert.AreEqual(19992, arrayMax.ArrayMax(array));
        }