dbCentro = null;
}
public void testInsertUtente() {
DBCentro dbCentro = new DBCentro();
DBUtenti dbUtenti = new DBUtenti();
dbCentro.preparaDb();
RecapitoTelefonico recapitoTel = new RecapitoTelefonicoImpl(
"3391234567", "070123457", "070123458", "070123456");
Indirizzo indirizzo = new IndirizzoImpl("09129", "Cagliari", "CA",
"Via Casamia 1");
UtenteLight utenteLight = new UtenteLightImpl("101","Baldussu Aldo",0,2);
Utente utente = new UtenteImpl(utenteLight,46, "desmax74@yahoo.it", true, indirizzo, recapitoTel);
Long id = _service.saveUtente(utente);
Utente utenteRecuperato = _service.getUtente(id, 46);
assertNotNull(utenteRecuperato);
dbUtenti.pulisciDb();
dbCentro.pulisciDb();
dbUtenti = null;
dbCentro = null;
}