opnform/tests/TestCase.php

14 lines
260 B
PHP
Raw Normal View History

2022-09-20 19:59:52 +00:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2024-02-23 10:54:12 +00:00
use RefreshDatabase;
2022-09-20 19:59:52 +00:00
use TestHelpers;
}