for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Feature;
use PHPUnit\Framework\TestCase;
include_once __DIR__ . '/header.php';
abstract class HeaderTestCase extends TestCase
{
/**
* @runInSeparateProcess
*/
protected function setUp(): void
global $testHeaders;
$testHeaders = null;
}
protected function headers(): array
return $testHeaders ?? [];