diff options
author | msquare <msquare@notrademark.de> | 2018-09-04 18:24:11 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-09-04 18:24:11 +0200 |
commit | b320fc779063ee80b8f0ba505cb323287ccccbf5 (patch) | |
tree | 1e420597ae72c979361bf29b66ae7e27c73cf431 /tests/Feature/ApplicationFeatureTest.php | |
parent | 9f1ee0c6c6497d43fb275491ec53fda420f64b81 (diff) | |
parent | 36dafdb68acbde2fe42ce36ef50f497c8c06411f (diff) |
Merge branch 'MyIgel-rebuild-psr7'
Diffstat (limited to 'tests/Feature/ApplicationFeatureTest.php')
-rw-r--r-- | tests/Feature/ApplicationFeatureTest.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/Feature/ApplicationFeatureTest.php b/tests/Feature/ApplicationFeatureTest.php new file mode 100644 index 00000000..fc6216f1 --- /dev/null +++ b/tests/Feature/ApplicationFeatureTest.php @@ -0,0 +1,14 @@ +<?php + +namespace Engelsystem\Test\Feature; + +use PHPUnit\Framework\TestCase; + +abstract class ApplicationFeatureTest extends TestCase +{ + public static function setUpBeforeClass() + { + $_SERVER['HTTP_HOST'] = 'foo.bar'; + require_once __DIR__ . '/../../includes/engelsystem.php'; + } +} |