getFilesystem() public method

public getFilesystem ( ) : Symfony\Component\Filesystem\Filesystem
return Symfony\Component\Filesystem\Filesystem
 public function testSetFilesystem()
 {
     $fs = new Filesystem();
     $this->store->setFilesystem($fs);
     $this->assertSame($fs, $this->store->getFilesystem());
 }