public void NullIfNotImplemented_translates_NotImplementedException_to_null_for_reference_type()
 {
     Assert.Null(
         FuncExtensions.NullIfNotImplemented <string>(
             () => { throw new NotImplementedException(); }));
 }
 public void NullIfNotImplemented_translates_NotImplementedException_to_null_for_nullable_type()
 {
     Assert.Null(
         FuncExtensions.NullIfNotImplemented <int?>(
             () => { throw new NotImplementedException(); }));
 }