/** Tests parser of expressions. */
@Test
public final void testExpr12c()
{
checkForCorrectException(new whatToRun() { public @Override void run() {
ba.interpretString("b && (!())");
}},IllegalArgumentException.class,"unexpected end");
checkForCorrectException(new whatToRun() { public @Override void run() {
ba.computeAlphabet("b && (!())");
}},IllegalArgumentException.class,"unexpected end");
}