PublicStructuresTest.php 300 B

123456789101112131415
  1. <?php
  2. namespace App\Tests\Application\Public;
  3. use App\Tests\Application\OtWebTestCase;
  4. class PublicStructuresTest extends OtWebTestCase
  5. {
  6. public function testSomething(): void
  7. {
  8. $crawler = $this->get('/api/public/structures');
  9. $this->assertResponseIsSuccessful();
  10. }
  11. }