Since: 0.2.0
Inheritance: extends Component
 public function testFilter()
 {
     $this->settings->set('use_remote_images', 'no');
     $workspace = $this->prophet->prophesize('\\Apple_Exporter\\Workspace');
     // get_file_contents and write_tmp_files must be caleld with the specified params
     $workspace->bundle_source('filename.jpg', 'http://someurl.com/filename.jpg')->shouldBeCalled();
     // Pass the mock workspace as a dependency
     $component = new Image('<img src="http://someurl.com/filename.jpg" alt="Example" />', $workspace->reveal(), $this->settings, $this->styles, $this->layouts);
     add_filter('apple_news_image_json', function ($json) {
         $json['layout'] = 'default-image';
         return $json;
     });
     $result = $component->to_array();
     $this->assertEquals('default-image', $result['layout']);
 }