snipe-it/tests/TestCase.php

30 lines
707 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace Tests;
use App\Http\Middleware\SecurityHeaders;
2023-03-07 16:57:55 -08:00
use Illuminate\Foundation\Testing\LazilyRefreshDatabase;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Tests\Support\InteractsWithSettings;
2016-03-25 01:18:05 -07:00
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2023-03-07 16:57:55 -08:00
use LazilyRefreshDatabase;
2023-02-02 17:41:32 -08:00
private array $globallyDisabledMiddleware = [
SecurityHeaders::class,
];
2023-02-02 17:41:32 -08:00
protected function setUp(): void
{
parent::setUp();
$this->withoutMiddleware($this->globallyDisabledMiddleware);
if (collect(class_uses_recursive($this))->contains(InteractsWithSettings::class)) {
$this->setUpSettings();
}
2023-02-02 17:41:32 -08:00
}
}