public function testGetDisableLocking()
 {
     $expected = false;
     $this->deploymentConfig->expects($this->once())->method('get')->with(Config::PARAM_DISABLE_LOCKING)->willReturn($expected);
     $this->assertEquals($this->config->getDisableLocking(), $expected);
 }