/**
  * Why did I have so many paths?
  * Get VFS working had issue with tmp to vfs using Filesystem
  */
 public function setUp()
 {
     parent::setUp();
     $this->root = vfsStream::setup('destination');
     $this->full_path_delete = '/tmp/testDelete';
     $this->full_path_updated = "/tmp/testUpdate/";
     $this->full_path_create = "/tmp/testCreate/";
     if ($this->filesystem->exists($this->full_path)) {
         $this->filesystem->remove($this->full_path);
     }
 }
 public function setUp()
 {
     parent::setUp();
 }