Пример #1
0
 public function testAppPathReturnsCachePath()
 {
     $this->assertEquals('base_path' . DIRECTORY_SEPARATOR . 'tmp' . DIRECTORY_SEPARATOR . 'cache', $this->appPath->cache());
 }
Пример #2
0
 public function testAppPathReturnsCachePath()
 {
     $expected = 'base_path' . DIRECTORY_SEPARATOR . 'tmp' . DIRECTORY_SEPARATOR . 'cache';
     $expectedReal = 'real' . DIRECTORY_SEPARATOR . $expected;
     $this->assertPath($expected, $this->appPath->cache());
 }