public function KernelTest::testGetName

File

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

Class

KernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function testGetName() {
  $kernel = new KernelForTest('test', true);
  $this
    ->assertEquals('Fixtures', $kernel
    ->getName());
}