Nimut / testing-framework

TYPO3 testing framework that provides base classes and configuration for PHPUnit tests
GNU General Public License v2.0
52 stars 25 forks source link

Backend routes not initialized for TYPO3 >= 9.2 #99

Closed mbrodala closed 5 years ago

mbrodala commented 5 years ago

Since TYPO3 9.2 initialization of backend routes has been moved to a PSR-15 middleware and is thus not done by Bootstrap::init() anymore as called by TestSystem::includeAndStartCoreBootstrap().

Due to this functional tests which rely on initialized routes will fail.

The testing framework should generally initialize the backend routes manually similarly to the v91 compat layer.