getCachePath() public method

public getCachePath ( )
Example #1
0
 private function cacheAsset(AssetInterface $asset)
 {
     return $this->configuration->getCacheEnabled() ? new AssetCache($asset, new FilesystemCache($this->configuration->getCachePath())) : $asset;
 }
 public function testGetCachePath()
 {
     $result = $this->object->getCachePath();
     $this->assertNull($result);
 }