Ejemplo n.º 1
0
 /**
  * @return CatalogPromotionServiceInterface|Mockery\Mock
  */
 public function getCatalogPromotionService()
 {
     $catalogPromotion = $this->dummyData->getCatalogPromotion();
     $service = $this->getMockeryMock(CatalogPromotionServiceInterface::class);
     $service->shouldReceive('getAllCatalogPromotions')->andReturn([$catalogPromotion]);
     return $service;
 }