public void Test_fail() { var parser = new LL1Parser(_grammar); Assert.False(parser.ProcessText(" a + adasda ^ ( b + c )")); }
public void Test_ok() { var parser = new LL1Parser(_grammar); Assert.True(parser.ProcessText(" a + b >= ( b + c )")); }