public class InputTest extends LapgTestCase {
private void checkGenTables(Grammar g, String outputId, TestNotifier er) {
LexerTables lt = LexicalBuilder.compile(g.getLexems(), new ProcessingStatusAdapter(er, 0));
ParserTables pt = Builder.compile(g, new ProcessingStatusAdapter(er, 0));
StringBuffer sb = new StringBuffer();
OutputUtils.printTables(sb, lt);
OutputUtils.printTables(sb, pt);