public function KernelTest::testBootSetsTheBootedFlagToTrue in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Tests/KernelTest.php \Symfony\Component\HttpKernel\Tests\KernelTest::testBootSetsTheBootedFlagToTrue()
File
- vendor/
symfony/ http-kernel/ Tests/ KernelTest.php, line 80
Class
Namespace
Symfony\Component\HttpKernel\TestsCode
public function testBootSetsTheBootedFlagToTrue() {
// use test kernel to access isBooted()
$kernel = $this
->getKernelForTest(array(
'initializeBundles',
'initializeContainer',
));
$kernel
->boot();
$this
->assertTrue($kernel
->isBooted());
}