Since: 0.2.0
Inheritance: extends Component
 public function testFilter()
 {
     $component = new Quote('<blockquote><p>my quote</p></blockquote>', null, $this->settings, $this->styles, $this->layouts);
     add_filter('apple_news_quote_json', function ($json) {
         $json['textStyle'] = 'fancy-quote';
         return $json;
     });
     $result = $component->to_array();
     $this->assertEquals('fancy-quote', $result['textStyle']);
 }