/**
* Test method for {@link org.javacc.parser.NfaState#
* DumpStateSets(java.io.PrintWriter)}.
*/
public void testDumpStateSetsInitialised() throws Exception {
CodeGenerator cg = new CodeGenerator();
setupState();
NfaState.DumpStateSets(cg);
assertEquals("static final int[] jjnextStates = {\n" +
" 34, 35, 12, 38, 39, 42, 43, 23, 24, 26, 14, 16, 49, 51, 6, 52, \n" +
" 59, 8, 9, 12, 23, 24, 28, 26, 34, 35, 12, 44, 45, 12, 53, 54, \n" +
" 60, 61, 62, 10, 11, 17, 18, 20, 25, 27, 29, 36, 37, 40, 41, 46, \n" +
" 47, 55, 56, 57, 58, 63, 64, \n" +
"};\n" ,
cg.getGeneratedCode().replaceAll("\r", ""));
}