AssertIsNull() public static method

public static AssertIsNull ( object parameter, string parameterName ) : void
parameter object
parameterName string
return void
Exemplo n.º 1
0
 public void AssertIsNull_NotNull_ThrowsException()
 {
     DebugUtils.AssertIsNull("", "foo");
 }
Exemplo n.º 2
0
 public void AssertIsNull_Null_DoesNotThrow()
 {
     DebugUtils.AssertIsNull(null, "foo");
 }