123456789101112131415161718192021 |
- <?php
- namespace Tests\Feature;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Tests\TestCase;
- class VideoStatTest extends TestCase
- {
- /**
- * A basic feature test example.
- */
- public function test_example(): void
- {
- //$response = $this->get('/api/statistic/video/stats');
- $response = $this->get('/api/wechatPlatform/officialAccount/list');
- echo $response->getContent();
- $response->assertStatus(200);
- }
- }
|