use of sic.builder.ClienteBuilder in project sic by belluccifranco.
the class ClienteServiceImplTest method shouldValidarOperacionWhenEmpresaEsNull.
@Test
public void shouldValidarOperacionWhenEmpresaEsNull() {
thrown.expect(BusinessServiceException.class);
thrown.expectMessage(ResourceBundle.getBundle("Mensajes").getString("mensaje_cliente_vacio_empresa"));
Cliente cliente = new ClienteBuilder().withEmail("soporte@gmail.com").withRazonSocial("Ferreteria Julian").withCondicionIVA(new CondicionIVABuilder().build()).withLocalidad(new LocalidadBuilder().build()).withEmpresa(null).build();
clienteServiceImpl.validarOperacion(TipoDeOperacion.ELIMINACION, cliente);
}
Aggregations