/cts/tools/utils/ |
D | VogarUtils.java | 35 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/ |
D | BaseDevicePolicyTest.java | 185 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/ |
D | Utils.java | 57 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()
|
D | DocumentsTest.java | 93 public void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument 95 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
|
D | KeySetHostTest.java | 166 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()
|
D | PermissionsHostTest.java | 126 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument 128 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
|
D | ExternalStorageHostTest.java | 245 private void runDeviceTests(String packageName, String testClassName, String testMethodName, in runDeviceTests() argument 247 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName, userId); in runDeviceTests() local
|
D | AppSecurityTests.java | 294 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument 296 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
|
D | AdoptableHostTest.java | 315 private void runDeviceTests(String packageName, String testClassName, String testMethodName) in runDeviceTests() argument 317 Utils.runDeviceTests(getDevice(), packageName, testClassName, testMethodName); in runDeviceTests() local
|
D | SplitTests.java | 425 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/ |
D | SensorCtsVerifierTestActivity.java | 87 String testMethodName = testMethod.getName(); in executeTest() local 88 String testName = String.format("%s#%s", getTestClassName(), testMethodName); in executeTest() 93 getTestLogger().logTestStart(testMethodName); in executeTest()
|