Ejemplo n.º 1
0
        public async Task <ActionResult> Get(int id)
        {
            if (!ModelState.IsValid)
            {
                _logger.LogWarning(ModelState.ToString());
                return(BadRequest(ModelState));
            }

            try
            {
                return(Ok(await _service.Get(id)));
            }
            catch (ArgumentException e)
            {
                return(StatusCode((int)HttpStatusCode.InternalServerError, e.Message));
            }
        }
Ejemplo n.º 2
0
        public async Task E_Possivel_Executar_Get()
        {
            _serviceMock = new Mock <ILivroServices>();
            _serviceMock.Setup(c => c.Get(LivroObjectDto.Id)).ReturnsAsync(LivroObjectDto);
            _service = _serviceMock.Object;

            var result = await _service.Get(LivroObjectDto.Id);

            Assert.NotNull(result);
            Assert.True(result.Id == LivroObjectDto.Id);
            Assert.Equal(result.Titulo, LivroObjectDto.Titulo);

            _serviceMock = new Mock <ILivroServices>();
            _serviceMock.Setup(c => c.Get(It.IsAny <int>())).ReturnsAsync((LivroDto)null);
            _service = _serviceMock.Object;

            var resultNull = await _service.Get(Faker.RandomNumber.Next());

            Assert.Null(resultNull);
        }