public void TestGetContentForUser()
        {
            string con = "This is bad content.";

            _contentRep.Setup(x => x.Content).Returns(con);
            _svc = new UserContentService(_contentRep.Object, _negContentRep.Object);
            Assert.AreEqual(_svc.GetContent(), con);
        }