@Before
public void preapreDB() throws Exception {
getTransactionManager().begin();
final EntityManager em = getFactory().createEntityManager();
account = new Account();
account.setLogin( "emmanuel" );
account.setPassword( "like I would tell ya" );
account.setHomeAddress( new Address() );
address = account.getHomeAddress();