コード例 #1
0
 public function testGetSessionIdQueryParamCustom()
 {
     $oldSessionName = $this->session->getName();
     $this->session->setName($this->customSessionName);
     $this->assertEquals($this->customSessionQueryParam, $this->model->getSessionIdQueryParam($this->session));
     $this->session->setName($oldSessionName);
 }