Tests.Tests.TestConst C# (CSharp) 메소드

TestConst() 개인적인 메소드

private TestConst ( ) : void
리턴 void
        public void TestConst()
        {
            var story = CompileString(@"
VAR x = c

CONST c = 5

{x}
");
            Assert.AreEqual("5\n", story.Continue());
        }
Tests