示例#1
0
 public function testGetMaxLifetime()
 {
     $expected = 30;
     $this->deploymentConfig->expects($this->once())->method('get')->with(Config::PARAM_MAX_LIFETIME)->willReturn($expected);
     $this->assertEquals($this->config->getMaxLifetime(), $expected);
 }
示例#2
0
 public function testGetMaxLifetime()
 {
     $this->assertEquals($this->config->getMaxLifetime(), Config::SESSION_MAX_LIFETIME);
 }