diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-07 16:06:53 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-07 16:06:53 +0100 |
commit | 08d2202abb66dd510d42f8a5a5f87e74b9f099d6 (patch) | |
tree | b09fbed1a181eb72306ca17a8b49140ed4367e81 /tests/bootstrap.php | |
parent | f3e6e0121d8a86cf7a5782a2cc06295da221c56c (diff) | |
download | nextcloud-server-08d2202abb66dd510d42f8a5a5f87e74b9f099d6.tar.gz nextcloud-server-08d2202abb66dd510d42f8a5a5f87e74b9f099d6.zip |
Load all enabled apps in test bootstrap
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 8bca05b1a18..86bedc3f325 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -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'); |