/**
  *
  */
 public function testSavingFile()
 {
     $this->dumpEntity->setCarefully(false);
     $this->dumpEntity->saveFile($this->filePath, 'test');
     $this->assertTrue($this->filesystem->exists($this->filePath));
     $this->assertEquals('test', file_get_contents($this->filePath));
 }