Examples of DBCentro


Examples of test.org.magicbox.dbunit.DBCentro

  }
 
 
  public void testConferma() throws Exception {

    DBCentro dbCentro = new DBCentro();
    dbCentro.preparaDb();
    DBGruppiCentro dbGruppi = new DBGruppiCentro();
    dbGruppi.preparaDb();
    DBUtenti dbUtenti = new DBUtenti();
    dbUtenti.preparaDb();

    _reqMock = new MockHttpServletRequest("GET", "/gruppi.page?action=conferma");
    _reqMock.getSession().setAttribute(Constant.ID_CENTRO_SESSIONE, new Long(46));
    _reqMock.setParameter(Constant.ID, "1");
   
    ModelAndView mav = _controller.conferma(_reqMock, _resMock);
    assertEquals("gruppi/confermaEliminazioneGruppo", mav.getViewName());
   
    dbUtenti.pulisciDb();
    dbGruppi.pulisciDb();
    dbCentro.pulisciDb();
    dbGruppi = null;
    dbCentro = null;
    dbUtenti = null;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.