for (String aFile : Splitter.on(",").omitEmptyStrings().trimResults().split(theMap.get("files").toString())) {
try {
Repositories.add(aRepo, new File(aFile));
}
catch (Exception e) {
throw new DataSourceException("Error reading file: " + aFile, e);
}
}
}
DataSource aSource = new MutableTestDataSource(aRepo);