public void DivisionTestByZero(double firstArgument, double secondArgument) { var testingFunction = new Root(); var testResult = testingFunction.Calculate(firstArgument, secondArgument); }
public void CalculateTest(double firstArgument, double secondArgument, double result, double accracy) { var testingFunction = new Root(); var testResult = testingFunction.Calculate(firstArgument, secondArgument); Assert.AreEqual(result, testResult, accracy); }