You are here

public function KernelTest::testGetRootDir 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::testGetRootDir()

File

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

Class

KernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function testGetRootDir() {
  $kernel = new KernelForTest('test', true);
  $this
    ->assertEquals(__DIR__ . DIRECTORY_SEPARATOR . 'Fixtures', realpath($kernel
    ->getRootDir()));
}