/**
  * @test
  */
 public function lockSiteOrExitDoesNotExitIfSiteIsNotLocked()
 {
     $this->lockManager->expects($this->never())->method('doExit');
     $this->lockManager->lockSiteOrExit();
 }