1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/tests/TestCase.php
2024-06-21 10:29:38 +10:00

19 lines
288 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();
}
}