Exemplo n.º 1
0
  public void testGetCollections() throws Exception {
    final String DEFAULT_COLLECTION_OWNER =
        "/principals/__uids__/" + URLEncoder.encode(DavTestParams.USERNAME) + "/";

    CardDavCollection collection = cardDavStore.getCollections().get(0);

    assertEquals(
        "Default addressbook collection must be owned by " + DavTestParams.USERNAME,
        collection.getOwnerHref().get(),
        DEFAULT_COLLECTION_OWNER);
  }