Tests.Tests.TestBasicStringLiterals C# (CSharp) Method

TestBasicStringLiterals() private method

private TestBasicStringLiterals ( ) : void
return void
        public void TestBasicStringLiterals()
        {
            var story = CompileString(@"
VAR x = ""Hello world 1""
{x}
Hello {""world""} 2.
");
            Assert.AreEqual("Hello world 1\nHello world 2.\n", story.ContinueMaximally());
        }
Tests