}
@Test
public void testWithMoreDirectories() throws Exception {
PathValueHolder holder = new PathValueHolder();
CmdLineParser parser = new CmdLineParser(holder);
File one = outputFolder.newFile("one");
File two = outputFolder.newFile("two");
File three = outputFolder.newFile("three");
String arg = one.getAbsolutePath() + File.pathSeparator + two.getAbsolutePath() + File.pathSeparator + three.getAbsolutePath();
parser.parseArgument(arg);
assertEquals("three files", 3, holder.sourcePath.size());
}