Tests.Tests.TestConst C# (CSharp) Method

TestConst() private method

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

CONST c = 5

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