public function testWipeOutRemovesAllEntries()
 {
     $lines = array('line1', 'line2');
     file_put_contents($this->gitIgnoreFile, implode("\n", $lines));
     $gitIgnore = new GitIgnore($this->gitIgnoreFile, array(), true);
     $gitIgnore->wipeOut();
     $this->assertFileExists($this->gitIgnoreFile);
     $this->assertSame(array(), $gitIgnore->getEntries());
     unset($gitIgnore);
     $this->assertEquals("", file_get_contents($this->gitIgnoreFile));
 }