예제 #1
0
        public void CalculateTest(
            double firstValue,
            double expected)

        {
            var calculator   = new SquareRoot();
            var actualResult = calculator.Calculate(firstValue);

            Assert.AreEqual(expected, actualResult, 0.001);
        }
예제 #2
0
        public void ExceptionTest()
        {
            var calculator = new SquareRoot();

            Assert.Throws <Exception>(() => calculator.Calculate(-2));
        }