public function set_up()
 {
     stream_wrapper_unregister('https');
     stream_wrapper_register('https', 'MockHttpStreamWrapper', STREAM_IS_URL);
     MockHttpStreamWrapper::clear();
     parent::set_up();
 }
 public function set_up()
 {
     parent::set_up();
     $this->client = new MockTinifyClient();
     Tinify\Tinify::setClient($this->client);
 }