1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/tests/TestCase.php
2024-09-03 08:35:13 +10:00

21 lines
306 B
PHP

<?php
namespace Tests;
use Mockery;
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();
}
}