Ejemplo n.º 1
0
        public void ArraySum_1and7and2_10returned()
        {
            double[] array = { 1, 7, 2 };
            _expected = 10;

            _actual = scientificCalculator.ArraySum(array);

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