Example #1
0
 /**
  * Test: Get app reset
  *
  * @covers \Pushy\Client::getAppReset
  */
 public function testGetAppReset()
 {
     $this->mockTransport->shouldReceive('getAppReset')->andReturn(1241115213);
     // Assert we get right reset value back
     $this->assertEquals(1241115213, $this->client->getAppReset());
 }