use of org.orcid.jaxb.model.v3.dev1.client.ClientSummary in project ORCID-Source by ORCID.
the class JpaJaxbClientAdapterTest method toClientSummaryTest.
@Test
public void toClientSummaryTest() {
ClientDetailsEntity entity = getClientDetailsEntity();
ClientSummary summary = adapter.toClientSummary(entity);
assertEquals(getClientSummary(), summary);
}
use of org.orcid.jaxb.model.v3.dev1.client.ClientSummary in project ORCID-Source by ORCID.
the class ClientManagerReadOnlyTest method getClientSummary.
private ClientSummary getClientSummary(String randomString) {
ClientSummary summary = new ClientSummary();
summary.setDescription("description " + randomString);
summary.setName("client-name " + randomString);
return summary;
}
Aggregations