public function run($mode = modInstall::MODE_NEW)
 {
     $this->results = parent::run($mode);
     $this->_checkZipMemLimit();
     $this->_checkAdvPaths();
     return $this->results;
 }
 public function run($mode = modInstall::MODE_NEW)
 {
     return parent::run($mode);
 }
 /**
  * Perform a series of pre-installation tests.
  *
  * @param integer $mode The install mode.
  * @param string $testClass The class to run tests with
  * @param string $testClassPath
  * @return array An array of result messages collected during the process.
  */
 public function test($mode = modInstall::MODE_NEW, $testClass = 'test.modInstallTest', $testClassPath = '')
 {
     $this->loadTestHandler($testClass, $testClassPath);
     return $this->test->run($mode);
 }