Пример #1
0
 /**
  * Explicitly call the constructor method of the underlying bootstrap object
  *
  * @param string|null $localXmlFile
  * @param string $cleanupAction
  */
 protected function _callBootstrapConstructor($localXmlFile = null, $cleanupAction = Magento_Test_Bootstrap::CLEANUP_NONE)
 {
     $this->_bootstrap->__construct(self::$_magentoDir, $localXmlFile ? $localXmlFile : self::$_localXmlFile, self::$_globalEtcFiles, self::$_moduleEtcFiles, '', self::$_tmpDir, $cleanupAction);
 }
Пример #2
0
 /**
  * Explicitly call the constructor method of the underlying bootstrap object
  *
  * @param string|null $localXmlFile
  * @param bool $isCleanupEnabled
  */
 protected function _callBootstrapConstructor($localXmlFile = null, $isCleanupEnabled = false)
 {
     $this->_bootstrap->__construct(self::$_magentoDir, self::$_testsDir, $localXmlFile ? $localXmlFile : self::$_localXmlFile, self::$_globalEtcFiles, self::$_moduleEtcFiles, '', self::$_tmpDir, $this->_shell, $isCleanupEnabled);
 }