1 package xxx; 2 3 import android.app.AlertDialog; 4 import org.robolectric.annotation.Implements; 5 6 /** 7 * Fake shadow for testing {@link org.robolectric.errorprone.bugpatterns.DeprecatedMethodsCheck}. 8 */ 9 @Implements(AlertDialog.class) 10 public class XShadowAlertDialog { getLatestAlertDialog()11 public static AlertDialog getLatestAlertDialog() { 12 return null; 13 } 14 } 15