eZ\Bundle\EzPublishCoreBundle\Tests\Imagine\IORepositoryResolverTest::testGetFilePath PHP Method

testGetFilePath() public method

public testGetFilePath ( $path, $filter, $expected )
    public function testGetFilePath($path, $filter, $expected)
    {
        $this->variationPathGenerator->expects($this->once())->method('getVariationPath')->with($path, $filter)->willReturn($expected);
        $this->assertSame($expected, $this->imageResolver->getFilePath($path, $filter));
    }