public void testExpandTerms() throws Exception {
System.out.println("method> expandTerms");
String filepath = "config.properties";
ConfigLoader cl = new ConfigLoader();
cl.load(new FileInputStream(filepath));
cl.expandTerms();
cl.list(new PrintWriter(System.out, true));
}