public function KernelTest::testBootSetsTheBootedFlagToTrue

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/KernelTest.php, line 96

Class

KernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

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());
}