/**
  * @covers ../../../src/Library/Helper/File::remove()
  */
 public function test_remove()
 {
     $this->checkNoArg('remove');
     \Library\Helper\Directory::ensureExists(self::$tmp_dir);
     \Library\Helper\File::touch(self::$tmp_file_2);
     $logs = array();
     $this->assertTrue(\Library\Helper\File::remove(self::$tmp_file_2));
     $this->assertEmpty($logs);
 }