Load all enabled apps in test bootstrap

This commit is contained in:
Robin McCorkell 2015-09-07 16:06:53 +01:00
parent f3e6e0121d
commit 08d2202abb
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');