public function testGetFirstLifetime()
 {
     $expected = 30;
     $this->deploymentConfig->expects($this->once())->method('get')->with(Config::PARAM_FIRST_LIFETIME)->willReturn($expected);
     $this->assertEquals($this->config->getFirstLifetime(), $expected);
 }