public void AgreguePoliza() { _reglas.Validar(Arg.Any <Poliza.Model.Poliza>()).ReturnsForAnyArgs(true); _repositorio.Agregue(Arg.Any <Poliza.Model.Poliza>()); _polizasController.Agregar(Escenarios.Obtenga1Poliza().Single()); }
public void AgreguePoliza_Regla_RiesgoAlto() { _reglas.Validar(Arg.Any <Poliza.Model.Poliza>()).ThrowsForAnyArgs(new Exception()); Assert.Throws <NotImplementedException>(() => _polizasController.Agregar(Escenarios.ObtengaRiesgoAlto_PorcentajeAlto())); }