You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
569 B

2 years ago
  1. <?php
  2. namespace Tests;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
  5. use Tests\Base\AuthMethodsTrait;
  6. use Tests\Base\FactoryMethodsTrait;
  7. use Tests\Base\FreshMongodbDatabase;
  8. use Tests\Base\MockMethodsTrait;
  9. use Tests\Base\DynamicPolicyAndModelTrait;
  10. abstract class TestCase extends BaseTestCase
  11. {
  12. use CreatesApplication;
  13. use RefreshDatabase;
  14. use FactoryMethodsTrait;
  15. use DynamicPolicyAndModelTrait;
  16. use AuthMethodsTrait;
  17. use MockMethodsTrait;
  18. use FreshMongodbDatabase;
  19. }