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