Skip to content

Commit

Permalink
[TASK] Adapt to new testing strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Nov 7, 2015
1 parent 1d07096 commit fb950bf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@
$autoloader = require __DIR__ . '/../vendor/autoload.php';
$autoloader->addPsr4('FluidTYPO3\\Site\\Tests\\Unit\\', __DIR__ . '/Unit/');
$autoloader->addPsr4('TYPO3\\CMS\\Core\\', __DIR__ . '/../vendor/typo3/cms/typo3/sysext/core/Classes/');
$autoloader->addPsr4('TYPO3\\CMS\\Core\\Tests\\', __DIR__ . '/../vendor/typo3/cms/typo3/sysext/core/Tests/');
$autoloader->addPsr4('TYPO3\\CMS\\Extbase\\', __DIR__ . '/../vendor/typo3/cms/typo3/sysext/extbase/Classes/');

\FluidTYPO3\Development\Bootstrap::initialize(array(
'cache_core' => \FluidTYPO3\Development\Bootstrap::CACHE_PHP_NULL,
));
\FluidTYPO3\Development\Bootstrap::initialize(
$autoloader,
array(
'cache_core' => \FluidTYPO3\Development\Bootstrap::CACHE_PHP_NULL,
)
);

0 comments on commit fb950bf

Please sign in to comment.