BankResponse mockedResponse = mockedBankResponse();
// When
// The first page has been requested.
Pagination pagination = mPaginationStrategy.parsePagination(mockedResponse);
// Then
assertNotNull("The pagination should not be null", pagination);
assertEquals("The previous page should have been set.", 0, pagination.getPrev());
assertEquals("The next page should have been set", 1, pagination.getNext());
assertEquals("The first page should have been set", 0, pagination.getFirst());
assertEquals("The last page should have been set", 1, pagination.getLast());
}