| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Tests\Application\Public;
- use App\Tests\Application\OtWebTestCase;
- class PublicEventsTest extends OtWebTestCase
- {
- public function testEvents(): void
- {
- // $response = static::createClient()->request('GET', '/api/public/events');
- // $this->assertResponseIsSuccessful();
- // $this->assertJsonContains([
- // '@context' => '/api/contexts/PublicEvent',
- // '@id' => '/api/public/events',
- // '@type' => 'hydra:Collection',
- // 'hydra:totalItems' => 1,
- // 'hydra:member' => [
- // ['name' => 'My Event'],
- // ],
- // ]);
- }
- }
|