* supported by the EasyTest Framework.
* @param testData an instance of {@link DataLoader} that helps in identifying the right {@link Loader} to write the data back to the file.
*/
private void determineLoader(DataLoader testData) {
dataFiles = testData.filePaths();
LoaderType loaderType = testData.loaderType();
// Loader
dataLoader = null;
if (LoaderType.CUSTOM.equals(loaderType)) {
PARAM_LOG.info("User specified to use custom Loader. Trying to get the custom loader.");
if (testData.loader() == null) {