@Test public void testOpslaan() throws Exception { PedicureSalon pedicureSalon = new PedicureSalon(); bedrijfClient.opslaanPedicureSalon(pedicureSalon); expectLastCall(); replayAll(); bedrijfService.opslaan(pedicureSalon); verifyAll(); }
@Test public void testZoekOpApiCode() throws Exception { String apiCode = "apiCodeee"; PedicureSalon pedicureSalon = new PedicureSalon(); expect(bedrijfClient.zoekOpApiCode(apiCode)).andReturn(pedicureSalon); replayAll(); assertEquals(pedicureSalon, bedrijfService.zoekOpApiCode(apiCode)); verifyAll(); }