Пример #1
0
 public void GetByModelId_Calls_GetByModel_In_Service()
 {
     bikesController.GetByModelId(Guid.NewGuid());
     mockService.Verify(s => s.GetByModel(It.IsAny <Guid>()), Times.Once);
 }