예제 #1
0
 public void SaveErrorInformationBlob(int testRunId, int testCaseId, int iteration, TestStepResultBlob obj)
 {
     obj.SetKeys(testRunId, testCaseId, iteration);
     _testStepResultStore.Post(obj);
 }
예제 #2
0
 public async Task <IEnumerable <TestStepResultBlob> > GetErrorInformationBlobs(int testRunId, int testCaseId)
 {
     return(await _testStepResultStore.Get(TestStepResultBlob.ConstructPartitionKey(testRunId, testCaseId)));
 }
 public static string ConstructPartitionKey(TestStepResultBlob obj)
 {
     return(ConstructPartitionKey(obj.TestRunId, obj.TestCaseId));
 }