eZ\Bundle\EzPublishCoreBundle\Tests\Imagine\AliasGeneratorTest::setUp PHP Method

setUp() protected method

protected setUp ( )
    protected function setUp()
    {
        parent::setUp();
        $this->dataLoader = $this->getMock('\\Liip\\ImagineBundle\\Binary\\Loader\\LoaderInterface');
        $this->filterManager = $this->getMockBuilder('\\Liip\\ImagineBundle\\Imagine\\Filter\\FilterManager')->disableOriginalConstructor()->getMock();
        $this->ioResolver = $this->getMock('\\Liip\\ImagineBundle\\Imagine\\Cache\\Resolver\\ResolverInterface');
        $this->filterConfiguration = new FilterConfiguration();
        $this->logger = $this->getMock('\\Psr\\Log\\LoggerInterface');
        $this->aliasGenerator = new AliasGenerator($this->dataLoader, $this->filterManager, $this->ioResolver, $this->filterConfiguration, $this->logger);
    }