public void Verify_ValidateRequiredKey_WithBadData_Should_ThrowAnArgumentNullException(string key) { Assert.Throws <ArgumentNullException>( () => BusinessWorkflowBase.ValidateRequiredKey(key)); }
public void Verify_ValidateRequiredKey_WithGoodData_Should_DoNothing(string key) { BusinessWorkflowBase.ValidateRequiredKey(key); }