VideoStatTest.php 513 B

123456789101112131415161718192021
  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. $response = $this->get('/api/wechatPlatform/officialAccount/list');
  15. echo $response->getContent();
  16. $response->assertStatus(200);
  17. }
  18. }