public function testSubmitData()
 {
     $subscriber = new \StatusPage\SDK\Subscribers\Subscriber();
     $subscriber->setEmail('*****@*****.**');
     $subscriber->setPhoneCountry('RU');
     $subscriber->setPhoneNumber('79120000000');
     $this->clientMock->expects($this->once())->method('send')->with('subscribers.json', 'POST', array('Content-Type' => 'application/x-www-form-urlencoded'), array('subscriber' => array('email' => '*****@*****.**', 'phone_number' => '79120000000', 'phone_country' => 'RU')));
     $this->endpoint->addSubscriber($subscriber);
 }