Example #1
0
 /**
  * @param Manager $manager
  *
  * @depends test__construct
  */
 public function testSetCachePath(Manager $manager)
 {
     $manager->setCachePath('somepath');
     $this->assertEquals('somepath', $manager->getCachePath());
     $this->assertEquals($this->rootDir . '/../web/somepath', $manager->getCacheDirectory());
     $manager->setCachePath($this->cachePath);
 }