You are here

public function KernelTest::testGetName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/KernelTest.php \Symfony\Component\HttpKernel\Tests\KernelTest::testGetName()

File

vendor/symfony/http-kernel/Tests/KernelTest.php, line 365

Class

KernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

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