Example #1
0
        public void TestSingleLineComment()
        {
            var comment = new StatementSingleLineComment("this is a \r\ntest.");

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