TestCase.php 496 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Tests;
  3. use Dcat\Admin\Models\Administrator;
  4. use Illuminate\Filesystem\Filesystem;
  5. use Illuminate\Support\Arr;
  6. use Illuminate\Support\Facades\DB;
  7. use Illuminate\Support\Facades\Schema;
  8. use Laravel\BrowserKitTesting\TestCase as BaseTestCase;
  9. class TestCase extends BaseTestCase
  10. {
  11. use CreatesApplication,
  12. BasicTestCase;
  13. protected $baseUrl = 'http://localhost:8000';
  14. /**
  15. * @var Administrator
  16. */
  17. protected $user;
  18. protected $login = true;
  19. }