public function __construct()
 {
     parent::__construct();
     $client = \Mockery::mock('stdClass');
     $client->shouldReceive('post->send')->once();
     $this->client = $client;
 }