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