/**
  * installAllApplications
  *
  * @param array $_options
  */
 protected function _installAllApplications($_options = null)
 {
     if (!$this->_uit) {
         throw new Setup_Exception('could not run test, Setup_Controller init failed');
     }
     $installableApplications = $this->_uit->getInstallableApplications();
     $installableApplications = array_keys($installableApplications);
     $this->_uit->installApplications($installableApplications, $_options);
 }