public async Task AddPrecaution_ReturnsNoContentResult()
        {
            //Arrange
            _PrecautionController.ControllerContext = _context;
            _precautionService
            .Setup(x => x.AddPrecautionAsync(It.IsAny <PrecautionDTO>(), It.IsAny <User>()));
            //Act
            var result = await _PrecautionController.AddPrecaution(It.IsAny <PrecautionDTO>());

            //Assert
            _precautionService.Verify();
            _userManager.Verify();
            Assert.IsInstanceOf <NoContentResult>(result);
        }
Exemplo n.º 2
0
        public async Task AddPrecaution_ReturnsNoContentResult()
        {
            //Arrange
            var httpContext = new Mock <HttpContext>();

            httpContext
            .Setup(m => m.User.IsInRole("Admin"))
            .Returns(true);
            var context = new ControllerContext(
                new ActionContext(
                    httpContext.Object, new RouteData(),
                    new ControllerActionDescriptor()));

            _PrecautionController.ControllerContext = context;
            _precautionService
            .Setup(x => x.AddPrecautionAsync(It.IsAny <PrecautionDTO>(), It.IsAny <User>()));
            //Act
            var result = await _PrecautionController.AddPrecaution(It.IsAny <PrecautionDTO>());

            //Assert
            _precautionService.Verify();
            Assert.IsNotNull(result);
            Assert.IsInstanceOf <NoContentResult>(result);
        }