2 namespace TYPO3\CMS\Core\Package
;
5 * This file is part of the TYPO3 CMS project.
7 * It is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License, either version 2
9 * of the License, or any later version.
11 * For the full copyright and license information, please read the
12 * LICENSE.txt file that was distributed with this source code.
14 * The TYPO3 project - inspiring people to share!
18 * This is an intermediate package manager that loads
19 * all extensions that are present in one of the package base paths,
20 * so that the class loader can find the classes of all tests,
21 * whether the according extension is active in the installation itself or not.
23 class UnitTestPackageManager
extends PackageManager
26 * Initializes the package manager
30 public function initialize()
32 $this->scanAvailablePackages();
33 $this->activePackages
= $this->packages
;
37 * Overwrite the original method to avoid resolving dependencies (which we do not need)
38 * and saving the PackageStates.php file (which we do not want), when calling scanAvailablePackages()
42 protected function sortAndSavePackageStates()
44 // Deliberately empty!