@Test
  public void toCatalogEntry() throws ValidationException {
    // given
    VOService service = new VOService();
    service.setServiceId("sId");
    voCatalogEntry.setService(service);

    // when
    CatalogEntry ce = CatalogEntryAssembler.toCatalogEntry(voCatalogEntry);

    // then
    assertEquals(voCatalogEntry.getKey(), ce.getKey());
    assertEquals(voCatalogEntry.isAnonymousVisible(), ce.isAnonymousVisible());
    assertEquals(voCatalogEntry.isVisibleInCatalog(), ce.isVisibleInCatalog());
    assertNotNull(ce.getMarketplace());
    assertEquals(
        voCatalogEntry.getMarketplace().getMarketplaceId(), ce.getMarketplace().getMarketplaceId());
  }