Examples of AbstractResourceMeta


Examples of org.zanata.rest.dto.resource.AbstractResourceMeta

        Map<String, AbstractResourceMeta> actualDocsMap =
                new HashMap<String, AbstractResourceMeta>();
        for (ResourceMeta doc : actualDocs) {
            actualDocsMap.put(doc.getName(), doc);
            log.debug("actual doc: " + doc.toString());
            AbstractResourceMeta expectedDoc = expectedDocs.get(doc.getName());
            if (checkRevs)
                assertThat(doc.getRevision(), is(expectedDoc.getRevision()));
        }
        assertThat(actualDocsMap.keySet(), is(expectedDocs.keySet()));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.