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

TestSeparatorInArray2() private method

private TestSeparatorInArray2 ( ) : void
return void
        public void TestSeparatorInArray2()
        {
            TemplateGroup group = new TemplateGroup();
            group.DefineTemplate("test", "<names:{n | case <n>}; separator=\", \">", new string[] { "names" });
            Template st = group.GetInstanceOf("test");
            st.Add("names", "Ter");
            st.Add("names", new string[] { "Tom", "Sriram" });
            string expected =
                "case Ter, case Tom, case Sriram";
            string result = st.Render();
            Assert.AreEqual(expected, result);
        }
TestCoreBasics