TestCase.php 355 B

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