ApiTeamTest::testTeamRosterArrayAccess PHP Method

testTeamRosterArrayAccess() public method

    public function testTeamRosterArrayAccess()
    {
        $this->client->shouldReceive('baseUrl')->with('https://na.api.pvp.net/api/lol/na/')->once();
        $this->client->shouldReceive('request')->with('v2.4/team/by-summoner/492066', ['api_key' => 'key'])->once()->andReturn(file_get_contents('tests/Json/team.492066.json'));
        $api = new Api('key', $this->client);
        $teams = $api->team()->team(492066);
        $c9 = $teams['TEAM-9baaf74e-ea61-4ebc-82d9-b013d29399fa'];
        $this->assertTrue($c9->roster[19302712] instanceof LeagueWrap\Dto\Team\Member);
    }