示例#1
0
        public void AddComment_Prepends_Text_To_Node_With_Double_Slash()
        {
            var expectedOutput = TestCommentText + Environment.NewLine + TestStatementText;
            var statement      = _singleStatement.AddComment(new[] { TestStatementCommentShort });

            Assert.AreEqual(expectedOutput, statement.NormalizeWhitespace().ToFullString());
        }