public void ThenSixExecutionsSucceeded()
 {
     _helper.RowCount("procfwk.CurrentExecution", where : "PipelineStatus", equals: "Success").Should().Be(6);
 }
 public void ThenCurrentExecutionTableIsEmpty()
 {
     _helperFirstBatch.RowCount("procfwk.CurrentExecution").Should().Be(0);
 }
Esempio n. 3
0
 public void ThenOneExecutionsCancelled()
 {
     _helper.RowCount("procfwk.CurrentExecution", where : "PipelineStatus", equals: "Cancelled").Should().Be(1);
 }
 public void ThenOneExecutionLogFailedRecord()
 {
     _helperRestartRun.RowCount("procfwk.ExecutionLog", where : "PipelineStatus", equals: "Failed").Should().Be(2);
 }
Esempio n. 5
0
 public void ThenThreeBatchExecutionSuccessRecords()
 {
     _helperThirdBatch.RowCount("procfwk.BatchExecution", where : "BatchStatus", equals: "Success").Should().Be(3);
 }
 public void ThenOneBatchExecutionStoppedRecord()
 {
     _helperSecondBatch.RowCount("procfwk.BatchExecution", where : "BatchStatus", equals: "Stopped").Should().Be(1);
 }
 public void ThenOneBatchExecutionSuccessRecord()
 {
     _helperFirstBatch.RowCount("procfwk.BatchExecution", where : "BatchStatus", equals: "Success").Should().Be(1);
 }
Esempio n. 8
0
 public void Then1000ExecutionLogRecords()
 {
     _helperBatchOne.RowCount("procfwk.ExecutionLog").Should().Be(1000);
 }