public void EmprestimoRepositorio_Delete_ShouldBeOk()
        {
            int        idSearch   = 1;
            Emprestimo emprestimo = _service.Get(idSearch);

            emprestimo.Livro.Disponibilidade = true;
            _service.Delete(emprestimo);
            Emprestimo result = _service.Get(idSearch);

            result.Should().BeNull();
        }