use of org.folio.rest.jaxrs.model.InvoiceCollection in project mod-invoice by folio-org.
the class DocumentsApiTest method testGetDocuments.
@Test
public void testGetDocuments() {
logger.info("=== Test Get Invoices by without query - get 200 by successful retrieval of documents ===");
final InvoiceCollection resp = verifySuccessGet(DOCUMENT_ENDPOINT, InvoiceCollection.class);
assertEquals(2, resp.getTotalRecords().intValue());
}
Aggregations