//Delete non-existing file with force, no exception
parser.processRemove(tmpFile.getAbsolutePath(), "force");
//Ensure that remove isn't processed when in explain mode
tmpFile = File.createTempFile("TestGruntParser", "testProcessRemove");
parser.setExplainState(new ExplainState("","","",false,""));
parser.processRemove(tmpFile.getAbsolutePath(), "force");
assertTrue(tmpFile.exists());
}