/**
* Performs the same function as in test2() except this time we load the
* task configuration from an XML file rather than configure it manually.
*/
public static void test3() throws Exception {
FunctionXMLParser parser = new FunctionXMLParser();
List functions = parser.parseFunctionEntries(new File("files/TestClass.xml"));
FunctionEntry entry = (FunctionEntry)functions.get(0);
Map inputs = new HashMap();
inputs.put("message", "yo dude");
inputs.put("prefix", "lalala");