public void GCD_test()
        {
            // arrange
            int[] a        = { 100, 22, 44, 2, 1000 };
            int   expected = 2;
            // act

            int actual = FindGCD.MyGCD(a);

            // assert
            Assert.AreEqual(actual, expected);
        }