Handler to provide the following to {@link org.multibit.mbm.client.PublicMerchantClient}:
2122232425262728293031
public void verifyItemCollectionHandler() { // Arrange // Act ClientItemCollectionHandler handler = PublicMerchantClient .newInstance(locale) .items(); // Assert assertNotNull(handler);
40414243444546
/** * @return A suitable handler for item collection searches */ public ClientItemCollectionHandler items() { return new ClientItemCollectionHandler(locale); }