public void VerifyGetResourcePoolArtifactIdWasCalled(Int32 timesCalled)
 {
     MockArtifactQueries.Verify(x => x.GetResourcePoolArtifactIdAsync(MockSvcManager.Object, ExecutionIdentity.System, It.IsAny <int>()), Times.Exactly(timesCalled));
 }
 public void VerifyUpdateStatusAsyncWasCalled(Int32 timesCalled)
 {
     MockArtifactQueries.Verify(x => x.UpdateRdoJobTextFieldAsync(MockSvcManager.Object, It.IsAny <int>(), ExecutionIdentity.CurrentUser, It.IsAny <Guid>(), It.IsAny <int>(), It.IsAny <Guid>(), It.IsAny <string>()), Times.Exactly(timesCalled));
 }
 public void VerifyDeleteJobErrorsWasCalled(Int32 timesCalled)
 {
     MockArtifactQueries.Verify(x => x.QueryJobErrors(MockSvcManager.Object, ExecutionIdentity.CurrentUser, It.IsAny <int>(), It.IsAny <int>(), It.IsAny <Guid>(), It.IsAny <Guid>()), Times.Exactly(timesCalled));
 }