Home | History | Annotate | Download | only in testing
      1 package org.robolectric.testing;
      2 
      3 import org.robolectric.annotation.internal.Instrument;
      4 
      5 @Instrument
      6 public class AnInstrumentedChild extends AnUninstrumentedParent {
      7   public final String childName;
      8 
      9   public AnInstrumentedChild(String name) {
     10     super(name.toUpperCase() + "'s child");
     11     this.childName = name;
     12   }
     13 }
     14