| 123456789101112131415161718192021 |
- <?php
- namespace App\Tests\Application\Profile;
- use App\Tests\Application\OtWebTestCase;
- class OrganizationProfilesTest extends OtWebTestCase
- {
- public function testGetAccessId(): void
- {
- $this->loginAs($this->user);
- $this->assertResponseIsSuccessful();
- $this->get('/api/organization_profiles/1');
- $this->assertResponseStatusCodeSame(200);
- }
- }
|