+ "SimpleCommand{nodeType=1,words=[WORD{echo},WORD{false}]}}",
doTest("if true ; then echo yes ; else echo false ; fi"));
}
private String doTest(String input) throws ShellException {
BjorneParser p = new BjorneParser(new BjorneTokenizer(new StringReader(input), DEBUG));
String res = p.parse().toString();
if (DEBUG) {
System.err.println(res);
}
return res;
}