public void M09_DaoHotelEliminar() { daoHotel.Agregar(mockHotell); String prueba1 = daoHotel.eliminarHotel(999); Assert.AreEqual(prueba1, "1"); }
/// <summary> /// Sobre escritura del Ejecutar de Comando /// </summary> /// <returns> /// Devuelve un String, en el cual se indica el mensaje que sera llevado a la vista /// </returns> public override String ejecutar() { try { IDAOHotel daoHotel = (DAOHotel)FabricaDAO.instanciarDaoHotel(); String test = daoHotel.eliminarHotel(_hotel._id); Cache.eliminarHotelMap(_hotel._id); return(ResourceM09Command.EliminoCorrectamente); } catch (ReservaExceptionM09 ex) { Log.EscribirError(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name, ex); return(ex.Codigo); } }