*Intended solution:
* Query = UPDATE MembersMain SET Vacation = 'x' WHERE '1'='1'--' WHERE Name = '1' (length 56 tokens)
* VAR = x' WHERE '1'='1'-- (length 18 chars)
*/
public void testGrammarBound13() throws Exception{
Grammar g = new Parser(GrammarTests.DIR + "tiny_SQL.txt").parse();
GrammarStringBounder gsb = new GrammarStringBounder();
int bound = 56;
Regexp boundedRegexp = gsb.getBoundedRegexp(g, "SelectStmt", bound, false);
assertTrue(boundedRegexp.matches("SELECT M FROM m WHERE d='1' OR '1'='1'"));//make sure the intended solution works