| 12345678910111213141516171819202122 |
- <?php
- namespace Tests\Feature;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Tests\TestCase;
- class UserTest extends TestCase
- {
- /**
- * A basic feature test example.
- *
- * @return void
- */
- public function test_example()
- {
- $response = $this->get('/api/v2/user?view=key&key=vi');
- $response->assertStatus(200);
- }
- }
|