public void servingUrlWithSecureFlagFalse() throws Exception {
ServingUrlOptions servingUrlOptions = ServingUrlOptions.Builder.withBlobKey(blobKey);
String url = imagesService.getServingUrl(servingUrlOptions.crop(false));
assertStartsWith("http://", url);
url = imagesService.getServingUrl(servingUrlOptions.imageSize(32).crop(false).secureUrl(false));
assertStartsWith("http://", url);
}
@Test
public void servingUrlWithSecureFlagTrue() throws Exception {