} else if (cacheloaderClass.equals(FileCacheLoader.class.getName()))
{
String tmpLocation = getTempLocation(cacheID);
File file = new File(tmpLocation);
cleanFile(file);
file.mkdir();
tmpLocation = escapeWindowsPath(tmpLocation);
String props = "location = " + tmpLocation + "\n";
c.setCacheLoaderConfig(UnitTestConfigurationFactory.buildSingleCacheLoaderConfig(false, "", cacheloaderClass,
props, async, fetchPersistentState, false, false, false));
}