I have parametrized junit test that reads from several XML input files. In the code, I have it like this:
@Parameters
public static Collection<Object[]> getFiles() {
Collection<Object[]> params = new ArrayList<Object[]>();
for (File f : new File(".").listFiles(new someInputFileFilter())) {
Object[] arr = new Object[] { f };
params.add(arr);
}
return params;
}
What is the recommended way to include possibly hundreds of these XML input files under Maven? Where do I put it? And what changes I need to make to POM and source code above to read these XML files?