Home
last modified time | relevance | path

Searched refs:testMethod (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsVerifierTestActivity.java57 for (Method testMethod : findTestMethods()) { in executeTests()
58 SensorTestDetails testDetails = executeTest(testMethod); in executeTests()
86 private SensorTestDetails executeTest(Method testMethod) throws InterruptedException { in executeTest() argument
87 String testMethodName = testMethod.getName(); in executeTest()
89 mCurrentTestNode = new TestNode(testMethod); in executeTest()
94 String testSummary = (String) testMethod.invoke(this); in executeTest()
127 public TestNode(Method testMethod) { in TestNode() argument
128 mTestMethod = testMethod; in TestNode()
/cts/tools/utils/
DCollectAllTests.java358 Method testMethod = testClass.getMethod(testName, (Class[])null); in getAnnotation() local
359 Annotation[] annotations = testMethod.getAnnotations(); in getAnnotation()
396 for (Method testMethod : testMethods) { in addToTests()
397 String testName = testMethod.getName(); in addToTests()
403 if (!Modifier.isPublic(testMethod.getModifiers())) { in addToTests()
406 if (!testMethod.getReturnType().equals(Void.TYPE)) { in addToTests()
409 if (testMethod.getParameterTypes().length != 0) { in addToTests()
414 || (!isJunit3Test && !isJunit4TestMethod(testMethod))) { in addToTests()