public int GetFalseValueCount_ParametersAreValid_ReturnResult(bool[] arrayToSearch)
 {
     // Act
     return(DoWhileMethods.GetFalseValueCount(arrayToSearch));
 }
 public void GetFalseValueCount_ArrayToSearchParameterIsNull_ThrowsArgumentNullException()
 {
     // Act
     Assert.Throws <ArgumentNullException>(() => DoWhileMethods.GetFalseValueCount(null));
 }