protected function willRunTests()
 {
     $root = dirname(phutil_get_library_root('phabricator'));
     require_once $root . '/scripts/__init_script__.php';
     $config = $this->getComputedConfiguration();
     if ($config[self::PHABRICATOR_TESTCONFIG_ISOLATE_LISK]) {
         LiskDAO::beginIsolateAllLiskEffectsToCurrentProcess();
     }
 }
 protected function willRunTests()
 {
     $root = dirname(phutil_get_library_root('phabricator'));
     require_once $root . '/scripts/__init_script__.php';
     $config = $this->getComputedConfiguration();
     if ($config[self::PHABRICATOR_TESTCONFIG_ISOLATE_LISK]) {
         LiskDAO::beginIsolateAllLiskEffectsToCurrentProcess();
     }
     if ($config[self::PHABRICATOR_TESTCONFIG_BUILD_STORAGE_FIXTURES]) {
         ++self::$storageFixtureReferences;
         if (!self::$storageFixture) {
             self::$storageFixture = $this->newStorageFixture();
         }
     }
     $this->env = PhabricatorEnv::beginScopedEnv();
 }
 protected function willRunTests()
 {
     $config = $this->getComputedConfiguration();
     if ($config[self::PHABRICATOR_TESTCONFIG_ISOLATE_LISK]) {
         LiskDAO::beginIsolateAllLiskEffectsToCurrentProcess();
     }
     $this->env = PhabricatorEnv::beginScopedEnv();
     // NOTE: While running unit tests, we act as though all applications are
     // installed, regardless of the install's configuration. Tests which need
     // to uninstall applications are responsible for adjusting state themselves
     // (such tests are exceedingly rare).
     $this->env->overrideEnvConfig('phabricator.uninstalled-applications', array());
     $this->env->overrideEnvConfig('phabricator.show-beta-applications', true);
     // Reset application settings to defaults, particularly policies.
     $this->env->overrideEnvConfig('phabricator.application-settings', array());
     // We can't stub this service right now, and it's not generally useful
     // to publish notifications about test execution.
     $this->env->overrideEnvConfig('notification.enabled', false);
     // TODO: Remove this when we remove "releeph.installed".
     $this->env->overrideEnvConfig('releeph.installed', true);
     $this->env->overrideEnvConfig('phabricator.base-uri', 'http://phabricator.example.com');
 }