コード例 #1
0
  @Test
  public void testOpslaan() throws Exception {
    PedicureSalon pedicureSalon = new PedicureSalon();

    bedrijfClient.opslaanPedicureSalon(pedicureSalon);
    expectLastCall();

    replayAll();

    bedrijfService.opslaan(pedicureSalon);

    verifyAll();
  }
コード例 #2
0
  @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();
  }