VideoStatTest.php 435 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Tests\TestCase;
  6. class VideoStatTest extends TestCase
  7. {
  8. /**
  9. * A basic feature test example.
  10. */
  11. public function test_example(): void
  12. {
  13. $response = $this->get('/api/statistic/video/stats');
  14. echo $response->getContent();
  15. $response->assertStatus(200);
  16. }
  17. }