@Test
  public void testOpslaan() throws Exception {
    PedicureSalon pedicureSalon = new PedicureSalon();

    bedrijfClient.opslaanPedicureSalon(pedicureSalon);
    expectLastCall();

    replayAll();

    bedrijfService.opslaan(pedicureSalon);

    verifyAll();
  }