Ejemplo n.º 1
0
 public void IsNull_NotNullParameter_DoNotThrowException()
 {
     ArgsValidator.IsNull(new object(), string.Empty);
 }
Ejemplo n.º 2
0
 public void IsNull_NullParameter_ThrowException()
 {
     ArgsValidator.IsNull(null, string.Empty);
 }