1 package org.robolectric.testing; 2 3 import org.robolectric.annotation.internal.Instrument; 4 5 @Instrument 6 public class Foo { Foo(String s)7 public Foo(String s) { 8 throw new RuntimeException("stub!"); 9 } 10 getName()11 public String getName() { 12 throw new RuntimeException("stub!"); 13 } 14 findFooById(int i)15 public void findFooById(int i) { 16 throw new RuntimeException("stub!"); 17 } 18 19 @Override hashCode()20 public int hashCode() { 21 throw new RuntimeException("stub!"); 22 } 23 24 @Override equals(Object obj)25 public boolean equals(Object obj) { 26 throw new RuntimeException("stub!"); 27 } 28 29 @Override toString()30 public String toString() { 31 throw new RuntimeException("stub!"); 32 } 33 } 34