Exemple #1
0
 public void NullOfT_ValueAsValueArgument_ShouldThrowInternalErrorException()
 {
     Throws(() =>
     {
         Assumes.Null <string>("Value");
     });
 }
Exemple #2
0
 public void NullOfT_NullAsValueArgument_ShouldNotThrow()
 {
     Assumes.Null <string>((string)null);
 }