Home
last modified time | relevance | path

Searched refs:testMethodName (Results 1 – 11 of 11) sorted by relevance

/cts/tools/utils/
DVogarUtils.java35 final String testMethodName) { in isVogarKnownFailure() argument
37 if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) { in isVogarKnownFailure()
50 final String testMethodName) { in isVogarKnownFailure() argument
54 String fullTestName = buildFullTestName(testClassName, testMethodName); in isVogarKnownFailure()
89 public static String buildFullTestName(String testClass, String testMethodName) { in buildFullTestName() argument
90 return String.format("%s#%s", testClass, testMethodName); in buildFullTestName()
139 final String testMethodName) { in timeoutInMinutes() argument
145 testMethodName)); in timeoutInMinutes()
156 final String testMethodName) { in timeoutInMinutes() argument
160 String fullTestName = buildFullTestName(testClassName, testMethodName); in timeoutInMinutes()
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDevicePolicyTest.java185 String pkgName, @Nullable String testClassName, String testMethodName, int userId) in runDeviceTestsAsUser() argument
187 return runDeviceTests(pkgName, testClassName, testMethodName, userId); in runDeviceTestsAsUser()
191 @Nullable String testMethodName, @Nullable Integer userId) in runDeviceTests() argument
193 return runDeviceTests(pkgName, testClassName, testMethodName, userId, /*params*/ null); in runDeviceTests()
197 @Nullable String testMethodName, @Nullable Integer userId, @Nullable String params) in runDeviceTests() argument
203 ? doRunTests(pkgName, testClassName, testMethodName) in runDeviceTests()
204 : doRunTestsAsUser(pkgName, testClassName, testMethodName, in runDeviceTests()
213 String testMethodName) throws DeviceNotAvailableException { in doRunTests() argument
216 if (testClassName != null && testMethodName != null) { in doRunTests()
217 testRunner.setMethodName(testClassName, testMethodName); in doRunTests()
[all …]
/cts/hostsidetests/appsecurity/src/com/android/cts/appsecurity/
DUtils.java57 String testMethodName) throws DeviceNotAvailableException { in runDeviceTests() argument
58 runDeviceTests(device, packageName, testClassName, testMethodName, USER_OWNER); in runDeviceTests()
62 String testMethodName, int userId) throws DeviceNotAvailableException { in runDeviceTests() argument
69 if (testClassName != null && testMethodName != null) { in runDeviceTests()
70 testRunner.setMethodName(testClassName, testMethodName); in runDeviceTests()
DDocumentsTest.java93 public void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument
95 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
DKeySetHostTest.java166 private boolean runDeviceTests(String pkgName, String testClassName, String testMethodName) in runDeviceTests() argument
168 TestRunResult runResult = doRunTests(pkgName, testClassName, testMethodName); in runDeviceTests()
180 String testMethodName) throws DeviceNotAvailableException { in doRunTests() argument
184 if (testClassName != null && testMethodName != null) { in doRunTests()
185 testRunner.setMethodName(testClassName, testMethodName); in doRunTests()
DPermissionsHostTest.java126 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument
128 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
DExternalStorageHostTest.java245 private void runDeviceTests(String packageName, String testClassName, String testMethodName, in runDeviceTests() argument
247 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName, userId); in runDeviceTests() local
DAppSecurityTests.java294 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument
296 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
DAdoptableHostTest.java315 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument
317 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
DSplitTests.java425 public void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument
427 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsVerifierTestActivity.java87 String testMethodName = testMethod.getName(); in executeTest() local
88 String testName = String.format("%s#%s", getTestClassName(), testMethodName); in executeTest()
93 getTestLogger().logTestStart(testMethodName); in executeTest()