eZ\Publish\Core\FieldType\Tests\Image\IO\LegacyTest::testGetExternalPath PHP Method

testGetExternalPath() public method

public testGetExternalPath ( )
    public function testGetExternalPath()
    {
        $this->publishedIoServiceMock->expects($this->once())->method('getExternalPath')->with('var/test/storage/images/path/file.png')->will($this->returnValue('path/file.png'));
        self::assertEquals('path/file.png', $this->service->getExternalPath('var/test/storage/images/path/file.png'));
    }