Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | protected function setUp() |
||
24 | { |
||
25 | parent::setUp(); |
||
26 | |||
27 | $this->container = $this->prophesize('Symfony\Component\DependencyInjection\ContainerInterface'); |
||
28 | $this->galleryManager = $this->prophesize('Sonata\MediaBundle\Model\GalleryManagerInterface'); |
||
29 | |||
30 | $this->blockService = new FeatureMediaBlockService( |
||
31 | 'block.service', |
||
32 | $this->templating, |
||
33 | $this->container->reveal(), |
||
34 | $this->galleryManager->reveal() |
||
35 | ); |
||
36 | } |
||
37 | |||
58 |