@Test public void testRimozioneIngrediente() { User user1 = null; try { user1 = userFacade.login(Ruolo.AMMINISTRATORE, "123456"); } catch (RemoteException e1) { fail("RemoteException"); } boolean ingredienteAttuale = false; try { ingredienteAttuale = articoloFacade.rimuoviIngrediente(user1, ingrediente.getId()); } catch (AccessControlException e) { ingredienteAttuale = false; } catch (RemoteException e) { fail("RemoteException"); } if (user1 != null) { try { userFacade.logout(user1); } catch (RemoteException e) { fail("RemoteException"); } } Assert.assertFalse(ingredienteAttuale); }
@After public void tearDown() throws Exception { articoloFacade.rimuoviIngrediente(user, ingrediente.getId()); userFacade.logout(user); }