public void VerifyRetrieveSingleInExportManagerQueueWasCalled(Int32 timesCalled)
 {
     MockSqlQueryHelper.Verify(x => x.RetrieveSingleInExportManagerQueueByArtifactIdAsync(MockDbContextEdds.Object, It.IsAny <int>(), It.IsAny <int>()), Times.Exactly(timesCalled));
 }
 public void VerifyInsertRowIntoExportManagerQueueAsyncWasCalled(Int32 timesCalled)
 {
     MockSqlQueryHelper.Verify(x => x.InsertRowIntoExportManagerQueueAsync(MockDbContextEdds.Object, It.IsAny <int>(), 1, It.IsAny <int>(), It.IsAny <int>(), It.IsAny <string>()), Times.Exactly(timesCalled));
 }
 public void VerifyUpdateQueueStatusAsyncWasCalled(Int32 timesCalled)
 {
     MockSqlQueryHelper.Verify(x => x.UpdateStatusInExportManagerQueueByWorkspaceJobIdAsync(MockDbContextEdds.Object, It.IsAny <int>(), It.IsAny <int>(), It.IsAny <int>()), Times.Exactly(timesCalled));
 }
 public void VerifyRetrieveWorkspacesWhereAppIsInstalledWasCalled(Int32 timesCalled)
 {
     MockSqlQueryHelper.Verify(x => x.RetrieveWorkspacesWhereAppIsInstalledAsync(MockDbContextEdds.Object), Times.Exactly(timesCalled));
 }