Home | History | Annotate | Download | only in testing
      1 package org.robolectric.testing;
      2 
      3 import org.robolectric.annotation.internal.Instrument;
      4 
      5 @SuppressWarnings("UnusedDeclaration")
      6 @Instrument
      7 public class AClassWithMethodReturningDouble {
      8   public double normalMethodReturningDouble(double doubleArg) {
      9     return doubleArg + 1;
     10   }
     11 }
     12