Home
last modified time | relevance | path

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

123

/cts/common/device-side/util/src/com/android/compatibility/common/util/
DBusinessLogicTestCase.java64 String methodName = mTestCase.getMethodName(); in executeBusinessLogic() local
66 + "remote configuration.", methodName), mCanReadBusinessLogic); in executeBusinessLogic()
67 if (methodName.contains(PARAM_START)) { in executeBusinessLogic()
69 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START)); in executeBusinessLogic()
71 String testName = String.format("%s#%s", this.getClass().getName(), methodName); in executeBusinessLogic()
DBusinessLogicDeviceExecutor.java76 protected ResolvedMethod getResolvedMethod(Class cls, String methodName, String... args) in getResolvedMethod() argument
78 List<Method> nameMatches = getMethodsWithName(cls, methodName); in getResolvedMethod()
114 "BusinessLogic: Failed to invoke action method %s with args: %s", methodName, in getResolvedMethod()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DBusinessLogicTestCase.java65 String methodName = mTestCase.getMethodName(); in executeBusinessLogic() local
67 + "remote configuration.", methodName), mCanReadBusinessLogic); in executeBusinessLogic()
68 if (methodName.contains(PARAM_START)) { in executeBusinessLogic()
70 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START)); in executeBusinessLogic()
72 String testName = String.format("%s#%s", this.getClass().getName(), methodName); in executeBusinessLogic()
DBusinessLogicDeviceExecutor.java76 protected ResolvedMethod getResolvedMethod(Class cls, String methodName, String... args) in getResolvedMethod() argument
78 List<Method> nameMatches = getMethodsWithName(cls, methodName); in getResolvedMethod()
114 "BusinessLogic: Failed to invoke action method %s with args: %s", methodName, in getResolvedMethod()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DPasswordMinimumRestrictionsTest.java186 private void invokeSetMethod(String methodName, DevicePolicyManager dpm, in invokeSetMethod() argument
188 final Method setMethod = DevicePolicyManager.class.getMethod(setMethodName(methodName), in invokeSetMethod()
196 private int invokeGetMethod(String methodName, DevicePolicyManager dpm, in invokeGetMethod() argument
199 DevicePolicyManager.class.getMethod(getMethodName(methodName), ComponentName.class); in invokeGetMethod()
203 private String setMethodName(String methodName) { in setMethodName() argument
204 return "set" + methodName; in setMethodName()
207 private String getMethodName(String methodName) { in getMethodName() argument
208 return "get" + methodName; in getMethodName()
DParentProfileTest.java103 String methodName = method.getName(); in testParentProfileApiDisabled() local
104 if (SUPPORTED_APIS.contains(methodName)) { in testParentProfileApiDisabled()
123 methodName + " throws exception other than SecurityException.", e); in testParentProfileApiDisabled()
128 failedMethods.add(methodName); in testParentProfileApiDisabled()
129 Log.e(LOG_TAG, methodName + " failed to throw SecurityException"); in testParentProfileApiDisabled()
/cts/tests/tests/libcoreapievolution/src/android/apievolution/cts/
DApiEvolutionTest.java148 Class<? extends Buffer> bufferClass, String methodName, Class[] parameterTypes) in assertSyntheticBufferMethodOverloadExists() argument
150 assertSyntheticMethodOverloadExists(bufferClass, methodName, parameterTypes, in assertSyntheticBufferMethodOverloadExists()
157 Class<?> clazz, String methodName, Class[] parameterTypes, in assertSyntheticMethodOverloadExists() argument
164 String fullMethodName = clazz + "." + methodName; in assertSyntheticMethodOverloadExists()
167 Method declaredMethod = clazz.getDeclaredMethod(methodName, parameterTypes); in assertSyntheticMethodOverloadExists()
174 if (methodMatches(methodName, parameterTypes, method)) { in assertSyntheticMethodOverloadExists()
229 private static boolean methodMatches(String methodName, Class[] parameterTypes, Method method) { in methodMatches() argument
230 return method.getName().equals(methodName) in methodMatches()
/cts/hostsidetests/numberblocking/src/com/android/cts/numberblocking/hostside/
DNumberBlockingTest.java194 private void runTestAsPrimaryUser(String className, String methodName) throws Exception { in runTestAsPrimaryUser() argument
195 runTestAsUser(className, methodName, getDevice().getPrimaryUserId()); in runTestAsPrimaryUser()
198 private void runTestAsSecondaryUser(String className, String methodName) throws Exception { in runTestAsSecondaryUser() argument
199 runTestAsUser(className, methodName, mSecondaryUserId); in runTestAsSecondaryUser()
202 private void runTestAsUser(String className, String methodName, int userId) throws Exception { in runTestAsUser() argument
204 className, methodName, userId); in runTestAsUser()
211 testRunner.setMethodName(NUMBER_BLOCKING_TESTS_PKG + "." + className, methodName); in runTestAsUser()
/cts/tests/core/runner/src/com/android/cts/core/runner/support/
DSingleTestNgTestExecutor.java40 public static Result execute(Class<?> klass, String methodName) { in execute() argument
45 if (methodName == null) { in execute()
59 TestNG testng = createTestNG(klass.getName(), methodName, listener); in execute()
65 Log.w("TestNgExec", "execute class " + klass.getName() + ", method " + methodName + in execute()
/cts/tests/core/runner-axt/src/com/android/cts/core/runner/support/
DSingleTestNgTestExecutor.java40 public static Result execute(Class<?> klass, String methodName) { in execute() argument
45 if (methodName == null) { in execute()
59 TestNG testng = createTestNG(klass.getName(), methodName, listener); in execute()
65 Log.w("TestNgExec", "execute class " + klass.getName() + ", method " + methodName + in execute()
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/util/src/com/android/cts/util/
DTestResult.java87 private TestResult(String packageName, String componentName, String methodName, in TestResult() argument
92 mMethodName = methodName; in TestResult()
137 private String methodName; field in TestResult.Builder
154 methodName = _methodName; in setMethodName()
174 return new TestResult(packageName, componentName, methodName, in build()
/cts/tests/core/runner-axt/src/com/android/cts/core/runner/
DExpectationBasedFilter.java102 String methodName = testDescription.getMethodName(); in shouldRun() local
103 String testName = className + "#" + methodName; in shouldRun()
133 String methodName = child.getMethodName(); in getTestDescription() local
134 if ("initializationError".equals(methodName)) { in getTestDescription()
/cts/tests/core/runner/src/com/android/cts/core/runner/
DExpectationBasedFilter.java102 String methodName = testDescription.getMethodName(); in shouldRun() local
103 String testName = className + "#" + methodName; in shouldRun()
133 String methodName = child.getMethodName(); in getTestDescription() local
134 if ("initializationError".equals(methodName)) { in getTestDescription()
/cts/tools/vm-tests-tf/build/src/util/build/
DBuildCTSMainsSources.java130 private File getFileFromPackage(String pname, String methodName) throws IOException { in getFileFromPackage() argument
132 String path = getFileName(pname, methodName, ".java"); in getFileFromPackage()
142 private String getFileName(String pname, String methodName, String extension) { in getFileName() argument
144 return new File(path, "Main_" + methodName + extension).getPath(); in getFileName()
/cts/hostsidetests/statsd/src/android/cts/statsd/atom/
DDeviceAtomTestCase.java76 String methodName, int atom, int key, int stateOn, int stateOff, in doDeviceMethodOnOff() argument
81 List<EventMetricData> data = doDeviceMethod(methodName, conf); in doDeviceMethodOnOff()
98 protected List<EventMetricData> doDeviceMethod(String methodName, StatsdConfig.Builder cfg) in doDeviceMethod() argument
104 LogUtil.CLog.d("\nPerforming device-side test of " + methodName + " for uid " + appUid); in doDeviceMethod()
105 runDeviceTests(DEVICE_SIDE_TEST_PACKAGE, ".AtomTests", methodName); in doDeviceMethod()
/cts/hostsidetests/backup/src/android/cts/backup/
DOtherSoundsSettingsHostSideTest.java117 private void checkDeviceTest(String methodName) throws DeviceNotAvailableException { in checkDeviceTest() argument
118 checkDeviceTest(APP_PACKAGE, TEST_CLASS, methodName); in checkDeviceTest()
DAllowBackupHostSideTest.java124 private void checkAllowBackupDeviceTest(String methodName) in checkAllowBackupDeviceTest() argument
127 methodName); in checkAllowBackupDeviceTest()
DProfileSerialNumberHostSideTest.java102 private void checkDeviceTest(String methodName) throws DeviceNotAvailableException { in checkDeviceTest() argument
103 checkDeviceTestAsUser(TEST_PACKAGE, TEST_CLASS, methodName, mProfileUserId.get()); in checkDeviceTest()
DSyncAdapterSettingsHostSideTest.java151 private void checkDeviceTest(String methodName) throws DeviceNotAvailableException { in checkDeviceTest() argument
152 checkDeviceTest(APP_PACKAGE, TEST_CLASS, methodName); in checkDeviceTest()
DFullBackupOnlyHostSideTest.java174 private void checkFullBackupOnlyDeviceTest(String methodName) in checkFullBackupOnlyDeviceTest() argument
177 methodName); in checkFullBackupOnlyDeviceTest()
DKeyValueBackupRestoreHostSideTest.java163 private void checkDeviceTest(String methodName) in checkDeviceTest() argument
166 methodName); in checkDeviceTest()
DRestoreAnyVersionHostSideTest.java178 private void checkRestoreAnyVersionDeviceTest(String methodName) in checkRestoreAnyVersionDeviceTest() argument
181 methodName); in checkRestoreAnyVersionDeviceTest()
/cts/tests/backup/src/android/backup/cts/
DAgentBindingTest.java70 String methodName, Class<?>[] types, Object[] args) throws Exception { in callActivityManagerMethod() argument
73 Method bindBackupAgentMethod = activityManagerClass.getMethod(methodName, types); in callActivityManagerMethod()
/cts/tools/utils/
Drerun.py80 [className, methodName] = failure.split('#')
84 command += " --class " + className + " --method " + methodName
/cts/hostsidetests/net/src/com/android/cts/net/
DHostsideNetworkTestCase.java129 protected void runDeviceTests(String packageName, String testClassName, String methodName) in runDeviceTests() argument
135 if (methodName != null) { in runDeviceTests()
136 testRunner.setMethodName(testClassName, methodName); in runDeviceTests()

123