Merge pull request #18882 from owncloud/load-all-apps-tests

Load all enabled apps in test bootstrap
This commit is contained in:
Lukas Reschke 2015-09-08 13:02:12 +02:00
commit 75f939b8fe
1 changed files with 2 additions and 3 deletions

View File

@ -10,9 +10,8 @@ require_once __DIR__ . '/../lib/base.php';
\OC::$loader->addValidRoot(OC::$SERVERROOT . '/tests');
// load minimum set of apps
OC_App::loadApps(array('authentication'));
OC_App::loadApps(array('filesystem', 'logging'));
// load all enabled apps
\OC_App::loadApps();
if (!class_exists('PHPUnit_Framework_TestCase')) {
require_once('PHPUnit/Autoload.php');