public void UnLikePostByUserId_Unliked_By_User_Who_Never_Liked_Post_Should_Not_Throw_Exception()
        {
            ILikeDAO dao = new LikeSqlDAO(ConnectionString);

            dao.UnlikePostByUserId(NewPostId, NewUserOneId); // Only NewUserTwoId liked the post in test-script.sql
            IList <User> users = dao.GetAllLikesByPostId(NewPostId);

            Assert.AreEqual(1, users.Count);
        }
        public void UnLikePostByUserId_Should_Work()
        {
            ILikeDAO dao = new LikeSqlDAO(ConnectionString);

            dao.UnlikePostByUserId(NewPostId, NewUserTwoId); // NewUserTwoId now unliking post they liked in test-script.sql
            IList <User> users = dao.GetAllLikesByPostId(NewPostId);

            Assert.AreEqual(0, users.Count);
        }