HomeSort by relevance Sort by last modified time
    Searched defs:runMethod (Results 1 - 10 of 10) sorted by null

  /external/junit/src/junit/framework/
TestCase.java 153 Method runMethod= null;
159 runMethod= getClass().getMethod(fName, (Class[])null);
163 if (!Modifier.isPublic(runMethod.getModifiers())) {
168 runMethod.invoke(this);
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 80 runMethod(testMethod, tolerance, repetitive);
103 runMethod(method, 1, false);
112 runMethod(method, runCount, isRepetitive);
116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable {
117 //This is a copy of {@link InstrumentationTestCase#runMethod}
123 runMethod.invoke(this, (Object[]) null);
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 189 runMethod(testMethod, tolerance, repetitive);
199 runMethod(method, runCount, isRepetitive);
204 private void runMethod(Method runMethod, int tolerance) throws Throwable {
205 runMethod(runMethod, tolerance, false);
208 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable {
214 runMethod.invoke(this, (Object[]) null);