Пример #1
0
	protected function tearDown() {
		$hookExceptions = \OC_Hook::$thrownExceptions;
		\OC_Hook::$thrownExceptions = [];
		\OC::$server->getLockingProvider()->releaseAll();
		if(!empty($hookExceptions)) {
			throw $hookExceptions[0];
		}
	}
Пример #2
0
 protected function tearDown()
 {
     $hookExceptions = \OC_Hook::$thrownExceptions;
     \OC_Hook::$thrownExceptions = [];
     if (!empty($hookExceptions)) {
         throw $hookExceptions[0];
     }
 }
Пример #3
0
 protected function tearDown()
 {
     $hookExceptions = \OC_Hook::$thrownExceptions;
     \OC_Hook::$thrownExceptions = [];
     \OC::$server->getLockingProvider()->releaseAll();
     if (!empty($hookExceptions)) {
         throw $hookExceptions[0];
     }
     $traits = $this->getTestTraits();
     foreach ($traits as $trait) {
         $methodName = 'tearDown' . basename(str_replace('\\', '/', $trait));
         if (method_exists($this, $methodName)) {
             call_user_func([$this, $methodName]);
         }
     }
 }
Пример #4
0
 protected function tearDown()
 {
     // restore database connection
     if (!$this->IsDatabaseAccessAllowed()) {
         \OC::$server->registerService('DatabaseConnection', function () {
             return self::$realDatabase;
         });
     }
     // further cleanup
     $hookExceptions = \OC_Hook::$thrownExceptions;
     \OC_Hook::$thrownExceptions = [];
     \OC::$server->getLockingProvider()->releaseAll();
     if (!empty($hookExceptions)) {
         throw $hookExceptions[0];
     }
     $traits = $this->getTestTraits();
     foreach ($traits as $trait) {
         $methodName = 'tearDown' . basename(str_replace('\\', '/', $trait));
         if (method_exists($this, $methodName)) {
             call_user_func([$this, $methodName]);
         }
     }
 }