Наследование: extends AbstractFilter
 /**
  * @expectedException \Imagine\Exception\NotSupportedException
  */
 public function testLoad()
 {
     $filter = new UnsupportedFilter();
     $filter->apply($this->getMock('\\Imagine\\Image\\ImageInterface'));
 }