Exemplo n.º 1
0
 public void AlgoritmExeptionTest(double number, int n, double precesion)
 {
     Assert.Throws <ArgumentOutOfRangeException>(() => FindNthRootAlgoritm.SqrtN(number, n, precesion));
 }
Exemplo n.º 2
0
 public double AlgoritmTest(double number, int n, double precesion)
 {
     return(FindNthRootAlgoritm.SqrtN(number, n, precesion));
 }