mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
21 lines
322 B
PHP
21 lines
322 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Utils\Traits\AppSetup;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
use AppSetup;
|
|
|
|
protected function setUp() :void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->buildCache(true);
|
|
|
|
}
|
|
}
|