private Visita createVisita() throws Exception {
if (pa == null) {
setUp();
}
Visita v = new Visita();
v.setDataFim(new Date());
v.setDataInicio(new Date());
Motivo motivo = new Motivo();
motivo.setEscolar(true);
v.setMotivo(motivo);
v.setEquipamento(EquipamentoDataServices.getList().get(0));
v.setUsuario(UsuarioDataServices.getList().get(0));
v.setTelecentro(TelecentroDataServices.getList().get(0));
v.setObservacao("Observa��o test");
v.setStatus(Status.PRONTO);
return v;
}