*/
public static void testFile(String fileName) {
SymbolTable idTable = new SymbolTable();
File input = new File("src\\pascalcompiler\\test\\syntaxtree\\" + fileName);
PascalParser pp = new PascalParser(input, idTable);
String syntaxTree = pp.program().indentedToString(0);
if(pp.isParsable()) {
System.out.println("Printing syntax tree for " + fileName);
System.out.println("********************Syntax-Tree********************");
System.out.println(syntaxTree);
pp.getIDTable().printTable();