protected function setUp()
 {
     parent::setUp();
     vfsStreamWrapper::register();
     $this->vfs = new vfsStreamDirectory('chunks');
     vfsStreamWrapper::setRoot($this->vfs);
 }
Beispiel #2
0
 protected function setUp()
 {
     parent::setUp();
     // Setup virtual file system
     vfsStreamWrapper::register();
     $this->vfs = new vfsStreamDirectory('chunks');
     vfsStreamWrapper::setRoot($this->vfs);
     // Setup Config
     $this->config = new Config();
     $this->config->setTempDir($this->vfs->url());
 }