Ejemplo n.º 1
0
 public CorridaServiceTest()
 {
     _corridaServiceMock         = new Mock <ICorridaService>();
     _registroCorridaServiceMock = new Mock <IRegistroCorridaService>();
     _corridaService             = new CorridaService();
     _registroCorridaService     = new RegistroCorridaService();
 }
 public UploadControllerTest()
 {
     _corridaServiceMock         = new Mock <ICorridaService>();
     _corridaService             = new CorridaService();
     _registroCorridaServiceMock = new Mock <IRegistroCorridaService>();
     _bonusServiceMock           = new Mock <IBonusService>();
     _registroCorridaService     = new RegistroCorridaService();
     _uploadMock = new Mock <UploadController>();
 }
Ejemplo n.º 3
0
 public UploadController(IRegistroCorridaService kartService, ICorridaService corridaServices, IBonusService bonusService)
 {
     _registroService = kartService;
     _corridaServices = corridaServices;
     _bonusService    = bonusService;
 }
 public RegistroServiceTest()
 {
     _registroCorridaService = new RegistroCorridaService();
 }