public function testSpecifiedGetRequestId()
 {
     $vars = array('tqx' => 'reqId:2');
     $r = new Request($vars);
     $reqId = $r->getRequestId();
     $this->assertSame('2', $reqId, "getRequestId should return same value the client specified");
 }