Proxy to RelativeResizeFilterLoader.
Inheritance: extends FilterLoaderWrapped
 public function testLoad()
 {
     $width = 123;
     $image = $this->getMock('\\Imagine\\Image\\ImageInterface');
     $this->innerLoader->expects($this->once())->method('load')->with($image, $this->equalTo(array('widen' => $width)))->will($this->returnValue($image));
     $this->assertSame($image, $this->loader->load($image, array($width)));
 }