Example #1
0
        public void CreateCommentTag()
        {
            var commentCommand = new CommentTagCreated()
            {
                CommentId     = 7,
                Environment   = "test",
                ApplicationIP = "test",
                UserToken     = "test",
                SessionId     = "test"
            };

            var response = commentService.CreateCommentTag(commentCommand);

            Assert.AreEqual(response.Type, Common.ServiceResponseTypes.Success);
        }