Exemplo n.º 1
0
 public function testLeague()
 {
     $this->client->shouldReceive('baseUrl')->once();
     $this->client->shouldReceive('request')->with('v2.5/league/by-summoner/272354', ['api_key' => 'key'])->once()->andReturn(file_get_contents('tests/Json/league.272354.json'));
     Api::setKey('key', $this->client);
     $leagues = League::league(272354);
     $this->assertTrue($leagues[0] instanceof LeagueWrap\Dto\League);
 }