Exemplo n.º 1
0
 public function testSteam2RenderIsValid()
 {
     $s = new SteamID('76561197969249708');
     $this->assertEquals('STEAM_0:0:4491990', $s->RenderSteam2());
     $s->SetAccountUniverse(SteamID::UniverseBeta);
     $this->assertEquals('STEAM_2:0:4491990', $s->RenderSteam2());
     $s->SetAccountType(SteamID::TypeGameServer);
     $this->assertEquals('157625991261918636', $s->RenderSteam2());
 }