コード例 #1
0
        public void CalculateTest(double firstValue, double secondValue, double expected)
        {
            var calculator   = new Addiction();
            var actualResult = calculator.Calculate(firstValue, secondValue);

            Assert.AreEqual(expected, actualResult, 0.001);
        }