public void Then_CreateOpportunity_Is_Not_Called()
 {
     _opportunityService
     .DidNotReceive()
     .CreateOpportunityAsync(Arg.Any <OpportunityDto>());
 }
 public void Then_OpportunityService_GetOpportunityBasket_Is_Not_Called()
 {
     _opportunityService.DidNotReceive().GetOpportunityBasketAsync(1);
 }
コード例 #3
0
 public void Then_OpportunityService_ContinueWithOpportunities_Is_Not_Called()
 {
     _opportunityService.DidNotReceive().ContinueWithOpportunitiesAsync(Arg.Any <ContinueOpportunityViewModel>());
 }
 public void Then_GetReferrals_Is_Not_Called()
 {
     _opportunityService.DidNotReceive().GetReferralsAsync(Arg.Any <int>());
 }
 public void Then_OpportunityService_ContinueWithOpportunities_Is_Not_Called()
 {
     _opportunityService.DidNotReceive().GetOpportunityBasketAsync(1);
 }
 public void Then_UpdateOpportunity_Is_Not_Called()
 {
     _opportunityService
     .DidNotReceive()
     .UpdateOpportunityAsync(Arg.Any <ProviderSearchDto>());
 }