Searched defs:testMethod (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DAssignableFrom.java29 public boolean apply(TestMethod testMethod) { argument
30 return root.isAssignableFrom(testMethod.getEnclosingClass());
H A DTestSuiteBuilder.java260 private void addTest(TestMethod testMethod) throws Exception { argument
261 addSuiteIfNecessary(testMethod.getEnclosingClassname());
262 suiteForCurrentClass.addTest(testMethod.createTest());
/frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
H A DHasAnnotation.java41 public boolean apply(TestMethod testMethod) { argument
42 return hasMethodOrClassAnnotation.apply(testMethod);
H A DHasClassAnnotation.java38 public boolean apply(TestMethod testMethod) { argument
39 return testMethod.getEnclosingClass().getAnnotation(annotationClass) != null;
H A DHasMethodAnnotation.java38 public boolean apply(TestMethod testMethod) { argument
39 return testMethod.getAnnotation(annotationClass) != null;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaRecorderStateUnitTestTemplate.java53 * @param testMethod the method under test.
55 public void runTestOnMethod(MediaRecorderMethodUnderTest testMethod) { argument
56 mMethodUnderTest = testMethod;
H A DMediaPlayerStateUnitTestTemplate.java77 * @param testMethod the method under test.
79 public void runTestOnMethod(MediaPlayerMethodUnderTest testMethod) { argument
80 mMethodUnderTest = testMethod;

Completed in 130 milliseconds