try
{
File f = new File(testFile.getArgument());
FileInputStream reader = new FileInputStream(f);
HashTree tree = SaveService.loadSubTree(reader);
new Load().insertLoadedTree(1,tree);
}
catch (Exception e)
{
log.error("Failure loading test file",e);
}