Antlr4.Test.StringTemplate.TestCoreBasics.TestNullAttrProp C# (CSharp) Method

TestNullAttrProp() private method

private TestNullAttrProp ( ) : void
return void
        public void TestNullAttrProp()
        {
            string template = "<u.id>: <u.name>";
            Template st = new Template(template);
            string expected = ": ";
            string result = st.Render();
            Assert.AreEqual(expected, result);
        }
TestCoreBasics