/** Tests parser of expressions. */
@Test
public final void testExpr24()
{
checkForCorrectException(new whatToRun() { public @Override void run() {
ba.interpretString("a || b)");
}},IllegalArgumentException.class,"extra tokens at the end ");
checkForCorrectException(new whatToRun() { public @Override void run() {
checkOutcome(new String[]{"a","b"},ba.computeAlphabet("a || b)"));
}},IllegalArgumentException.class,"extra tokens at the end ");
}