* @see DATAREST-217
*/
@Test(expected = HttpRequestMethodNotSupportedException.class)
public void returnsNotFoundForListingEntitiesIfFindAllNotExported() throws Exception {
repository.save(new Address());
RootResourceInformation request = getResourceInformation(Address.class);
controller.getCollectionResource(request, null, null, null);
}