public function testBootSetsTheBootedFlagToTrue() {
$kernel = $this
->getMockBuilder('Symfony\\Component\\HttpKernel\\Tests\\Fixtures\\KernelForTest')
->disableOriginalConstructor()
->setMethods(array(
'initializeBundles',
'initializeContainer',
'getBundles',
))
->getMock();
$kernel
->expects($this
->once())
->method('getBundles')
->will($this
->returnValue(array()));
$kernel
->boot();
$this
->assertTrue($kernel
->isBooted());
}