Exemplo n.º 1
0
 public void Verify_ValidateIDIsNull_WithBadData_Should_ThrowAnArgumentException(int id)
 {
     Assert.Throws <ArgumentException>(
         () => BusinessWorkflowBase.ValidateIDIsNull(id));
 }
Exemplo n.º 2
0
 public void Verify_ValidateIDIsNull_WithGoodData_Should_DoNothing(int id)
 {
     BusinessWorkflowBase.ValidateIDIsNull(id);
 }