use of com.facebook.share.model.SharePhotoContent in project facebook-android-sdk by facebook.
the class ShareContentValidationTest method testItDoesAcceptSharePhotoContentByWeb.
@Test
public void testItDoesAcceptSharePhotoContentByWeb() {
SharePhoto sharePhoto = buildSharePhoto("https://facebook.com/awesome.gif");
SharePhotoContent sharePhotoContent = new SharePhotoContent.Builder().addPhoto(sharePhoto).build();
ShareContentValidation.validateForWebShare(sharePhotoContent);
}
Aggregations