Home | History | Annotate | Download | only in shadows
      1 package org.robolectric.annotation.processing.shadows;
      2 
      3 import org.robolectric.annotation.Implements;
      4 import com.example.objects.Dummy;
      5 
      6 @Implements(value = Dummy.class,
      7             className="com.example.objects.OuterDummy")
      8 public class ShadowImplementsDummyWithOuterDummyClassName {
      9 
     10 }
     11