Example #1
0
        public void TestName()
        {
            Either <Error, Tuple <string, string> > res = Parser.Name("operation(#ambient, #read)");

            Assert.AreEqual(new Right(new Tuple <string, string>("(#ambient, #read)", "operation")), res);
        }