Files
exchange/tests/TestCase.php
T
2018-09-12 15:36:49 +08:00

14 lines
295 B
PHP

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