public void EliminarRespuesta()
        {
            IRespuestaService respuestaService = new RespuestaService();

            bool resultado = respuestaService.Eliminar(1);

            Assert.IsTrue(resultado);
        }
        public void AgregarRespuesta()
        {
            IRespuestaService respuestaService = new RespuestaService();

            int id = respuestaService.Registrar(new Respuesta() { Usuario = "IWilson", Solicitud = new Solicitud() { Id=1} });

            Assert.IsTrue(id > 0);
        }
        public void EliminarRespuesta_IdInvalido()
        {
            IRespuestaService respuestaService = new RespuestaService();

            bool resultado = respuestaService.Eliminar(10);
        }
        public void AgregarRespuesta_SinUsuario()
        {
            IRespuestaService respuestaService = new RespuestaService();

            int id = respuestaService.Registrar(new Respuesta() { Solicitud = new Solicitud() { Id = 1 } });
        }
        public void AgregarRespuesta_SinSolicitud()
        {
            IRespuestaService respuestaService = new RespuestaService();

            int id = respuestaService.Registrar(new Respuesta() { Usuario = "IWilson" });
        }