TransferTest.php 520 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Tests\Feature;
  3. use Illuminate\Foundation\Testing\RefreshDatabase;
  4. use Illuminate\Foundation\Testing\WithFaker;
  5. use Tests\TestCase;
  6. class TransferTest extends TestCase
  7. {
  8. /**
  9. * A basic feature test example.
  10. *
  11. * @return void
  12. */
  13. public function test_example()
  14. {
  15. $response = $this->withHeaders([
  16. 'Authorization' => env('TEST_USER_TOKEN'),
  17. ])->get('/api/v2/transfer?view=studio&name=visuddinanda');
  18. $response->assertStatus(200);
  19. }
  20. }