/**
  * @test
  */
 public function addremoveCommand()
 {
     $addremoveCmd = Factory::createAddremove();
     $addremoveCmd->addFile('C:\\xampp\\file1\\');
     $addremoveCmd->addFile('C:\\xampp\\file2\\');
     $addremoveCmd->setSimilarity('50');
     $addremoveCmd->addInclude('includePattern');
     $addremoveCmd->addExclude('excludePattern');
     $addremoveCmd->setDryRun(true);
     $file = '\'C:\\xampp\\file1\\\' \'C:\\xampp\\file2\\\'';
     $expected = 'hg addremove --similarity ' . escapeshellarg('50') . ' --include includePattern --exclude excludePattern --dry-run ';
     if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
         $file = str_replace("'", '"', $file);
     }
     $this->assertSame($file, implode(' ', $addremoveCmd->getFile()));
     $this->assertSame($expected . $file, $addremoveCmd->asString());
 }