Blog.Logic.Core.Tests.EducationLogicTest.ShouldThrowExceptionWhenUpdateEducationFails C# (CSharp) Méthode

ShouldThrowExceptionWhenUpdateEducationFails() private méthode

private ShouldThrowExceptionWhenUpdateEducationFails ( ) : void
Résultat void
        public void ShouldThrowExceptionWhenUpdateEducationFails()
        {
            _educationRepository = new Mock<IEducationRepository>();
            _educationRepository.Setup(a => a.Edit(It.IsAny<Education>())).Throws(new Exception());

            _educationLogic = new EducationLogic(_educationRepository.Object);

            Assert.Throws<BlogException>(() => _educationLogic.Update(new Common.Contracts.Education()));
        }