for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CarlosIO\Geckoboard\Tests;
use CarlosIO\Geckoboard\Client;
class DummyClient extends Client
{
public function __construct()
parent::__construct();
$client = \Mockery::mock('stdClass');
$client->shouldReceive('post->send')->once();
$this->client = $client;
}