• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.testing;
2 
3 import org.robolectric.annotation.internal.Instrument;
4 
5 @SuppressWarnings("UnusedDeclaration")
6 @Instrument
7 public class AnExampleClass {
8   static int foo = 123;
9 
10   public static final String STATIC_FINAL_FIELD = "STATIC_FINAL_FIELD";
11   public final String nonstaticFinalField = "nonstaticFinalField";
12 
normalMethod(String stringArg, int intArg)13   public String normalMethod(String stringArg, int intArg) {
14     return "normalMethod(" + stringArg + ", " + intArg + ")";
15   }
16 
17   //        abstract void abstractMethod(); todo
18 }
19