/**
  * @covers AbiosGaming\Request::mapArgs
  */
 public function testMappedParams()
 {
     // Get around stub out existence of session
     $stubApi = $this->getMockBuilder('AbiosGaming\\API')->setConstructorArgs([$this->clientId, $this->clientSecret])->setMethods(['getSession'])->getMock();
     $stubSession = $this->getMockBuilder('AbiosGaming\\Session')->disableOriginalConstructor()->getMock($stubApi);
     $stubApi->method('getSession')->willReturn($stubSession);
     $stubSession->method('getKey')->willReturn('FAKESESSION');
     $request = new Request($stubApi, 'getqueuestats');
     $request->addArgs(['ConquestChallenge', 'Gold1']);
     $this->assertStringEndsWith('/429/15', $request->getRequestedUrl());
 }