PublicEventsTest.php 278 B

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