request('GET', '/api/domains/nic.fr')->toArray(); $this->assertResponseIsSuccessful(); $response = $client->request('GET', '/api/domains', [ 'query' => ['registrant' => 'AFNIC'], ]); $this->assertResponseIsSuccessful(); $this->assertMatchesResourceCollectionJsonSchema(Domain::class); $data = $response->toArray(); $this->assertArrayHasKey('hydra:member', $data); $this->assertCount(1, $data['hydra:member']); } }