eZ\Bundle\EzPublishCoreBundle\Tests\Imagine\BinaryLoaderTest::testFindMissing PHP Method

testFindMissing() public method

public testFindMissing ( )
    public function testFindMissing()
    {
        $path = 'something.jpg';
        $this->ioService->expects($this->once())->method('loadBinaryFile')->with($path)->will($this->returnValue(new MissingBinaryFile()));
        $this->binaryLoader->find($path);
    }