OrganizationProfilesTest.php 386 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Tests\Application\Profile;
  3. use App\Tests\Application\OtWebTestCase;
  4. class OrganizationProfilesTest extends OtWebTestCase
  5. {
  6. public function testGetAccessId(): void
  7. {
  8. $this->loginAs($this->user);
  9. $this->assertResponseIsSuccessful();
  10. $this->get('/api/organization_profiles/1');
  11. $this->assertResponseStatusCodeSame(200);
  12. }
  13. }