Ejemplo n.º 1
0
 public void IsNullOrEmpty_ParameterNotEmpty_DoNotThrowException()
 {
     ArgsValidator.IsNullOrEmpty("blah", string.Empty);
 }
Ejemplo n.º 2
0
 public void IsNullOrEmpty_EmptyParameter_ThrowException()
 {
     ArgsValidator.IsNullOrEmpty(string.Empty, string.Empty);
 }