Example #1
0
        public void Test_fail()
        {
            var parser = new LL1Parser(_grammar);

            Assert.False(parser.ProcessText(" a + adasda ^ ( b + c )"));
        }
Example #2
0
        public void Test_ok()
        {
            var parser = new LL1Parser(_grammar);

            Assert.True(parser.ProcessText(" a + b >= ( b + c )"));
        }