Exemplo n.º 1
0
        public PostCommentTest()
        {
            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            PostTest Post = new PostTest();
            AddDependentObject(Post);

            mPostComment = new PostComment();
            mPostComment.Comment = comment.Comment;
            mPostComment.Post = Post.Post;
        }
Exemplo n.º 2
0
        public ThreadTest()
        {
            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            CommentTest parentcomment = new CommentTest();
            AddDependentObject(parentcomment);

            mThread = new Thread();
            mThread.Comment = comment.Comment;
            mThread.ParentComment = parentcomment.Comment;
        }
Exemplo n.º 3
0
        public ImageCommentTest()
        {
            ImageTest image = new ImageTest();
            AddDependentObject(image);

            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            mImageComment = new ImageComment();
            mImageComment.Image = image.Image;
            mImageComment.Comment = comment.Comment;
        }
Exemplo n.º 4
0
        public ThreadTest()
        {
            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            CommentTest parentcomment = new CommentTest();

            AddDependentObject(parentcomment);

            mThread               = new Thread();
            mThread.Comment       = comment.Comment;
            mThread.ParentComment = parentcomment.Comment;
        }
Exemplo n.º 5
0
        public ImageCommentTest()
        {
            ImageTest image = new ImageTest();

            AddDependentObject(image);

            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            mImageComment         = new ImageComment();
            mImageComment.Image   = image.Image;
            mImageComment.Comment = comment.Comment;
        }
Exemplo n.º 6
0
        public PostCommentTest()
        {
            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            PostTest Post = new PostTest();

            AddDependentObject(Post);

            mPostComment         = new PostComment();
            mPostComment.Comment = comment.Comment;
            mPostComment.Post    = Post.Post;
        }