2018-01-19 23:19:50 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Test\Feature;
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
abstract class ApplicationFeatureTest extends TestCase
|
|
|
|
{
|
2019-04-24 10:45:00 +02:00
|
|
|
public static function setUpBeforeClass(): void
|
2018-01-19 23:19:50 +01:00
|
|
|
{
|
|
|
|
$_SERVER['HTTP_HOST'] = 'foo.bar';
|
2020-01-02 14:14:03 +01:00
|
|
|
require __DIR__ . '/../../includes/engelsystem.php';
|
2018-01-19 23:19:50 +01:00
|
|
|
}
|
|
|
|
}
|