• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.testing;
2 
3 import org.robolectric.annotation.internal.Instrument;
4 
5 @SuppressWarnings("UnusedDeclaration")
6 @Instrument
7 public class AClassWithNativeMethod {
nativeMethod(String stringArg, int intArg)8   public native String nativeMethod(String stringArg, int intArg);
9 }
10