AssertIsNull() public static method

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