loadSchema(); $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'], ], ]); } }