コード例 #1
0
ファイル: CommentTests.cs プロジェクト: izzach/CSharp
        public void IsCommentAllowed_IfReply()
        {
            Comment comment = new Comment();
            comment.SetIsCommentAReply(true);

            Assert.IsFalse(comment.IsCommentAllowed());
        }
コード例 #2
0
ファイル: CommentTests.cs プロジェクト: izzach/CSharp
        public void IsCommentAllowed_IfNotReply()
        {
            Comment comment = new Comment();
            comment.SetIsCommentAReply(false);

            Assert.IsTrue(comment.IsCommentAllowed());
        }