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