Home | History | Annotate | Download | only in bytecode
      1 package com.xtremelabs.robolectric.bytecode;
      2 
      3 import com.xtremelabs.robolectric.internal.Instrument;
      4 
      5 @Instrument
      6 public class Foo {
      7     public Foo(String s) {
      8         throw new RuntimeException("stub!");
      9     }
     10 
     11     public String getName() {
     12         throw new RuntimeException("stub!");
     13     }
     14 
     15     public void findFooById(int i) {
     16         throw new RuntimeException("stub!");
     17     }
     18 }
     19