コード例 #1
0
        public void CommentarySetCommentaryTest()
        {
            Commentary commentary = new Commentary(creationDateTime, creatorUser, "Comentario");

            commentary.SetCommentary("NewComentario");
            Assert.AreEqual(commentary.getCommentary(), "NewComentario");
        }