1234567891011121314151617181920212223242526 |
- <?php
- namespace Tests;
- use Dcat\Admin\Models\Administrator;
- use Illuminate\Filesystem\Filesystem;
- use Illuminate\Support\Arr;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Schema;
- use Laravel\BrowserKitTesting\TestCase as BaseTestCase;
- class TestCase extends BaseTestCase
- {
- use CreatesApplication,
- BasicTestCase;
- protected $baseUrl = 'http://localhost:8000';
- /**
- * @var Administrator
- */
- protected $user;
- protected $login = true;
- }
|