Home
last modified time | relevance | path

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

/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DDexTestRunner.java163 public void setTestClassName(String className, String methodName) { in setTestClassName() argument
165 addTestClassByName(className, methodName); in setTestClassName()
168 void addTestClassByName(final String className, final String methodName) { in addTestClassByName() argument
181 test = (Test) testClass.getConstructor(String.class).newInstance(methodName); in addTestClassByName()
193 throw new RuntimeException("No tests found in " + className + "#" + methodName); in addTestClassByName()
/platform_testing/libraries/junitxml/src/com/android/junitxml/
DXmlRunListener.java221 final String methodName = description.getMethodName(); in testFinished() local
224 methodName == null ? TESTCASE_NAME_UNKNOWN : methodName); in testFinished()
/platform_testing/libraries/device-collectors/src/main/platform-collectors/src/android/device/collectors/
DStatsdListener.java314 String methodName = description.getMethodName(); in formatDescription() local
315 return methodName == null ? className : String.join("#", className, methodName); in formatDescription()
/platform_testing/libraries/health/runners/longevity/platform/tests/src/android/platform/test/longevity/
DLongevityClassRunnerTest.java427 private List<FrameworkMethod> getMethodNameMatcher(String methodName) { in getMethodNameMatcher() argument
432 f -> ((FrameworkMethod) f).getName().contains(methodName))); in getMethodNameMatcher()