* Static method that is used to outputs the test results of a specified
* file.
* @param fileName
*/
public static void testFile(String fileName) {
SymbolTable idTable = new SymbolTable();
File input = new File("src\\pascalcompiler\\test\\codegeneration\\" + fileName + ".txt");
PascalParser pp = new PascalParser(input, idTable);
SyntaxTreeNode syntaxTree = pp.program();
String output;
CodeGenerator myCode = new CodeGenerator();