예제 #1
0
        public void ArrayMax_1and7and2_10returned()
        {
            double[] array = { 1, 7, 2 };
            _expected = 7;

            _actual = scientificCalculator.ArrayMax(array);

            Assert.That(_actual, Is.EqualTo(_expected));
        }