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