invoiceninja/tests/TestCase.php
2023-08-21 11:29:31 +10:00

12 lines
217 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}