public function KernelTest::testGetRootDir

File

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

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