Example #1
0
 public function testGetHeroes()
 {
     $file = file_get_contents('./tests/Responses/getHeroes.json');
     $this->mockHandler->append(new Response('200', [], $file));
     $response = $this->client->getHeroes();
     $this->assertArraySubset(json_decode($file, true), $response->getJson());
 }