Antlr4.Test.StringTemplate.TestCoreBasics.TestNotFalseCond C# (CSharp) Méthode

TestNotFalseCond() private méthode

private TestNotFalseCond ( ) : void
Résultat void
        public void TestNotFalseCond()
        {
            string template = "<if(!name)>works<endif>";
            Template st = new Template(template);
            string expected = "works";
            string result = st.Render();
            Assert.AreEqual(expected, result);
        }
TestCoreBasics