Ejemplo n.º 1
0
 public function testEmptyAtInitialization()
 {
     $o = new FileAccess(__FILE__);
     $this->assertNull($o->getCachePath());
 }
Ejemplo n.º 2
0
 public function testBasicSetCachePath()
 {
     $o = new FileAccess(__FILE__);
     $o->setCachePath(VSC_FIXTURE_PATH);
     $this->assertEquals(VSC_FIXTURE_PATH, $o->getCachePath());
 }