public function KernelTest::testClassCacheIsNotLoadedWhenKernelIsNotBooted in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/KernelTest.php \Symfony\Component\HttpKernel\Tests\KernelTest::testClassCacheIsNotLoadedWhenKernelIsNotBooted()
File
- vendor/
symfony/ http-kernel/ Tests/ KernelTest.php, line 109
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function testClassCacheIsNotLoadedWhenKernelIsNotBooted() {
$kernel = $this
->getKernel(array(
'initializeBundles',
'initializeContainer',
'doLoadClassCache',
));
$kernel
->loadClassCache();
$kernel
->expects($this
->never())
->method('doLoadClassCache');
}