public void Verify_ValidateIDIsNull_WithBadData_Should_ThrowAnArgumentException(int id) { Assert.Throws <ArgumentException>( () => BusinessWorkflowBase.ValidateIDIsNull(id)); }
public void Verify_ValidateIDIsNull_WithGoodData_Should_DoNothing(int id) { BusinessWorkflowBase.ValidateIDIsNull(id); }