2FAuth/tests/FeatureTestCase.php
2024-09-26 23:50:01 +02:00

27 lines
545 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\LazilyRefreshDatabase;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class FeatureTestCase extends BaseTestCase
{
use CreatesApplication;
/**
* Refresh db only when test is using database transaction.
*/
use LazilyRefreshDatabase;
/**
* Perform any work that should take place once the database has finished refreshing.
*
* @return void
*/
protected function afterRefreshingDatabase()
{
//
}
}