Example #1
0
 public function testGetImgUrlById()
 {
     $url = $this->abilities->getImgUrlById(5172);
     $this->assertEquals('http://media.steampowered.com/apps/dota2/images/abilities/beastmaster_inner_beast_lg.png', $url);
     $url = $this->abilities->getImgUrlById(5002);
     $this->assertEquals('images/stats.png', $url);
 }
Example #2
0
 public function testParse()
 {
     $abilities = new Abilities();
     $abilities->parse('6.86');
     $url = $abilities->getImgUrlById(5341);
     $this->assertEquals('http://media.steampowered.com/apps/dota2/images/abilities/doom_bringer_infernal_blade_lg.png', $url);
 }