public int GetByteWithBitsInHighNibbleCount_ParametersAreValid_ReturnsResult(byte[] arrayToSearch)
 {
     // Act
     return(ForMethods.GetByteWithBitsInHighNibbleCount(arrayToSearch));
 }
 public void GetByteWithBitsInHighNibbleCount_ArrayToSearchParameterIsNull_ThrowsArgumentNullException()
 {
     // Act
     Assert.Throws <ArgumentNullException>(() => ForMethods.GetByteWithBitsInHighNibbleCount(null));
 }