for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Chris Hilsdon <[email protected]>
*/
namespace Cloudflare\Tests;
use Cloudflare;
abstract class BaseUnit extends \PHPUnit_Framework_TestCase
{
protected $CF;
protected function newCloudflare()
$this->CF = new Cloudflare\Cloudflare();
return $this->getCloudflare();
}
protected function getCloudflare()
return $this->CF;