public void TestMultiLineComment() { var comment = new StatementMultiLineComment("this is a \r\ntest."); AssertStatement(comment, "/* this is a \r\n test.\r\n */\r\n"); }
public void StatementMultiLineCommentConstructorTest() { string comment = string.Empty; // TODO: Initialize to an appropriate value StatementMultiLineComment target = new StatementMultiLineComment(comment); Assert.Inconclusive("TODO: Implement code to verify target"); }