コード例 #1
0
ファイル: AppTest.php プロジェクト: michaldudek/splot-project
 /**
  * Test getting the root dir.
  *
  * @covers ::getRootDir
  */
 public function testGetRootDir()
 {
     $app = new App();
     $rootDir = realpath(__DIR__ . '/../../');
     $this->assertEquals($rootDir, $app->getRootDir());
 }