4748495051525354
application.createOrganization(organization, parent, date); } @Override public void terminateParty(Long partyId, Date date) { Party party = application.getEntity(Party.class, partyId); application.terminateParty(party, date); }
79808182838485868788
*/ @Ignore @Test public void testTerminateParty() { System.out.println("terminateParty"); Party party = mock(Party.class); Date date = DateUtils.date(2012, 1, 1); instance.terminateParty(party, date); verify(party).terminate(date); }
7677787980818283848586
*/ @Ignore @Test public void testTerminateParty() { System.out.println("terminateParty"); Party party = null; Date date = null; instance.terminateParty(party, date); // TODO review the generated test code and remove the default call to fail. fail("The test case is a prototype."); }