public int GetRoundedToEvenCountRecursive_ParametersAreValid_ReturnResult(double[] arrayToSearch)
 {
     // Act
     return(DoWhileMethods.GetRoundedToEvenCountRecursive(arrayToSearch));
 }
 public void GetRoundedToEvenCountRecursive_ArrayToSearchParameterIsNull_ThrowsArgumentNullException()
 {
     // Act
     Assert.Throws <ArgumentNullException>(() => DoWhileMethods.GetRoundedToEvenCountRecursive(null));
 }