public void FindNthRoot_Number_Degree_Precision_ArgumentOutOfRangeException(double number, int power, double accuracy) { Assert.That(() => NthRootClass.FindNthRoot(number, power, accuracy), Throws.TypeOf <ArgumentOutOfRangeException>()); }
public decimal FindNthRootTestMethod(double number, int power, double accuracy) { return(NthRootClass.FindNthRoot(number, power, accuracy)); }