Blog.Logic.Core.Tests.CommentsLogicTest.ShouldThrowExceptionWhenSearchCommentFails C# (CSharp) Method

ShouldThrowExceptionWhenSearchCommentFails() private method

private ShouldThrowExceptionWhenSearchCommentFails ( ) : void
return void
        public void ShouldThrowExceptionWhenSearchCommentFails()
        {
            _commentsRepository = new Mock<ICommentRepository>();
            _commentsRepository.Setup(a => a.SearchComments(It.IsAny<string>(), It.IsAny<int>(), It.IsAny<int>()))
                .Throws(new Exception("foo"));

            _userRepository = new Mock<IUserRepository>();

            _commentsLogic = new CommentsLogic(_commentsRepository.Object, _userRepository.Object);

            Assert.Throws<BlogException>(() => _commentsLogic.SearchComments("foo", 1, 1));
        }