public void ExceptionIfNullshould_Should_ThrowException_When_Null()
 {
     Action action = () => AsyncExtensions.ExceptionIfNull<string>(null);
     action.Should().Throw<ArgumentNullException>();
 }