Beispiel #1
0
 /**
  * Test: Cancel emergency
  *
  * @covers \Pushy\Client::cancelEmergency
  */
 public function testCancelEmergency()
 {
     // Transport should at least send a response with status property
     $this->mockTransport->shouldReceive('sendRequest')->andReturn((object) ['status' => 1]);
     $this->client->cancelEmergency('abcdefghijklmnopqrstuvwxyz0123');
 }