public function testProcess()
 {
     $file = new \SplFileInfo(vfsStream::url('root/sample.jpg'));
     $resultFile = $this->provider->process($this->media, $this->variant, $file);
     $filename = $resultFile->getBasename();
     $this->assertStringEndsWith('-temp-sample.jpg', $filename);
     $this->assertTrue($this->dir->hasChild($filename));
 }