• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package xxx;
2 
3 import android.app.Dialog;
4 import org.robolectric.annotation.Implements;
5 
6 /**
7  * Fake shadow for testing {@link org.robolectric.errorprone.bugpatterns.DeprecatedMethodsCheck}.
8  */
9 @Implements(Dialog.class)
10 public class XShadowDialog {
getLatestDialog()11   public static Dialog getLatestDialog() {
12     return null;
13   }
14 }
15