コード例 #1
0
ファイル: AppPathTest.php プロジェクト: agborkowski/conpago
 public function testAppPathReturnsConfigPath()
 {
     $this->assertEquals('base_path' . DIRECTORY_SEPARATOR . 'config', $this->appPath->config());
 }
コード例 #2
0
ファイル: AppPathTest.php プロジェクト: conpago/conpago
 public function testAppPathReturnsConfigPath()
 {
     $expected = 'base_path' . DIRECTORY_SEPARATOR . 'config';
     $this->assertPath($expected, $this->appPath->config());
 }