示例#1
0
 public void IsNull_NotNullParameter_DoNotThrowException()
 {
     ArgsValidator.IsNull(new object(), string.Empty);
 }
示例#2
0
 public void IsNull_NullParameter_ThrowException()
 {
     ArgsValidator.IsNull(null, string.Empty);
 }