本文整理汇总了C#中TestService.CancelOperation方法的典型用法代码示例。如果您正苦于以下问题:C# TestService.CancelOperation方法的具体用法?C# TestService.CancelOperation怎么用?C# TestService.CancelOperation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestService
的用法示例。
在下文中一共展示了TestService.CancelOperation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CancelOperation_OperationStatusIsCancelationPendingInOperationsManager_Test
public void CancelOperation_OperationStatusIsCancelationPendingInOperationsManager_Test()
{
var operationsManager = new OperationsManagerMock();
var service = new TestService(operationsManager);
var operationStartInformation = service.DoOperationAsync();
service.CancelOperation(operationStartInformation.OperationId);
var operationStatus = operationsManager.GetOperationStatus(operationStartInformation.OperationId);
Assert.AreEqual(OperationState.CancelationPending, operationStatus.Info.State);
}
示例2: CancelOperation_OnFakeGuid_ThrowOperationNotFound_Test
public void CancelOperation_OnFakeGuid_ThrowOperationNotFound_Test()
{
var service = new TestService();
var fakeGuid = Guid.NewGuid();
service.CancelOperation(fakeGuid);
}
示例3: OperationsManagerMock
public void DoOperationAsync_OnCancelationRequstedButNotCompletedOperation_NotBlockExecutionAndReturnsOperationGuidWithAttributeInformationAndOperationsManagerStatusIsCompletedSuuccessfuly_Test()
{
var operationsManager = new OperationsManagerMock();
var service = new TestService(operationsManager);
var startTime = DateTime.Now;
var operationStartInformation = service.DoOperationAsync();
var endTime = DateTime.Now;
var beforeWaitOperationStatus = operationsManager.GetOperationStatus(operationStartInformation.OperationId);
service.CancelOperation(operationStartInformation.OperationId);
Thread.Sleep(TestOperation.OperationDuration + TestOperation.SafeTimeToSetOperationResult);
var afterWaitOperationStatus = operationsManager.GetOperationStatus(operationStartInformation.OperationId);
Assert.IsTrue(endTime - startTime < TestOperation.OperationDuration);
Assert.AreEqual(TestOperation.IS_REPORTING_PROGRESS, operationStartInformation.IsReportingProgress);
Assert.AreEqual(TestOperation.IS_SUPPORTING_CANCEL, operationStartInformation.IsSupportingCancel);
Assert.AreEqual(TestOperation.SUGGESTED_POLLING_INTERVAL_MILLISECONDS, operationStartInformation.SuggestedPollingIntervalMilliseconds);
Assert.AreEqual(TestOperation.EXPECTED_COMPLETION_TIME_MILLISECONDS, operationStartInformation.ExpectedCompletionTimeMilliseconds);
Assert.AreEqual(OperationState.Started, beforeWaitOperationStatus.Info.State);
Assert.IsNull(beforeWaitOperationStatus.Result);
Assert.AreEqual(OperationState.CompletedSucessfully, afterWaitOperationStatus.Info.State);
Assert.AreEqual(TestOperation.TEST_OPERATION_RESULT, afterWaitOperationStatus.Result);
}