mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-02 03:16:27 -04:00
16 lines
322 B
PHP
16 lines
322 B
PHP
<?php
|
|
|
|
namespace Modules\Appearance\Tests\Feature;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
class ThemePageTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
}
|