blob: 3cd8b376a2f0a1c1c913551230569f0ca4348849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Engelsystem\Test\Feature;
use PHPUnit\Framework\TestCase;
abstract class ApplicationFeatureTest extends TestCase
{
public static function setUpBeforeClass(): void
{
$_SERVER['HTTP_HOST'] = 'foo.bar';
require_once __DIR__ . '/../../includes/engelsystem.php';
}
}
|