Blog.Logic.Core.Tests.PostContentsLogicTest.ShouldThrowExceptionWhenGetPostContentByIdFails C# (CSharp) Method

ShouldThrowExceptionWhenGetPostContentByIdFails() private method

private ShouldThrowExceptionWhenGetPostContentByIdFails ( ) : void
return void
        public void ShouldThrowExceptionWhenGetPostContentByIdFails()
        {
            _postContentRepository = new Mock<IPostContentRepository>();
            _postContentRepository.Setup(a => a.Find(It.IsAny<Expression<Func<PostContent, bool>>>(), true))
                .Throws(new Exception());

            _postContentsLogic = new PostContentsLogic(_postContentRepository.Object);

            Assert.Throws<BlogException>(() => _postContentsLogic.Get(1));
        }