Home
last modified time | relevance | path

Searched refs:testMethods (Results 1 – 4 of 4) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsVerifierTestActivity.java110 ArrayList<Method> testMethods = new ArrayList<>(); in findTestMethods() local
116 testMethods.add(method); in findTestMethods()
119 return testMethods; in findTestMethods()
/cts/tests/tests/database/src/android/database/sqlite/cts/
DSQLiteQueryTest.java22 public void testMethods() { in testMethods() method in SQLiteQueryTest
/cts/common/device-side/bedstead/testapisreflection/src/processor/main/java/com/android/bedstead/testapisreflection/processor/
DProcessor.java180 private void generateMethods(FileSpec.Builder classBuilder, Set<MethodSignature> testMethods) { in generateMethods() argument
181 for (MethodSignature method : testMethods) { in generateMethods()
242 Set<MethodSignature> testMethods = ALLOWLISTED_TEST_METHODS.stream() in generatedMethodsForTestApiClasses() local
246 for (MethodSignature method : testMethods) { in generatedMethodsForTestApiClasses()
/cts/common/device-side/bedstead/remoteframeworkclasses/src/processor/main/java/com/android/bedstead/remoteframeworkclasses/processor/
DProcessor.java683 Set<ExecutableElement> testMethods = new HashSet<>(); in filterValidTestApis() local
691 .forEach(e -> testMethods.add(e)); in filterValidTestApis()
693 for (ExecutableElement method : testMethods) { in filterValidTestApis()