for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Test;
use Basis\Application;
use PHPUnit\Framework\TestCase;
class TestSuite extends TestCase
{
protected $app;
public function setup()
$this->app = new Application(__DIR__.DIRECTORY_SEPARATOR.'example');
chdir(__DIR__.DIRECTORY_SEPARATOR.'example');
}