for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPieces\Framework;
class TestCase extends \PHPUnit_Framework_TestCase
{
public function getClient($app)
$client = new \PHPieces\Framework\Client();
$client->app = $app;
return $client;
}