1 package org.robolectric.testing;
2 
3 import org.robolectric.annotation.internal.Instrument;
4 
5 @SuppressWarnings("UnusedDeclaration")
6 @Instrument
7 public class AClassWithMethodReturningBoolean {
normalMethodReturningBoolean(boolean boolArg, boolean[] boolArrayArg)8   public boolean normalMethodReturningBoolean(boolean boolArg, boolean[] boolArrayArg) {
9     return true;
10   }
11 }
12