HomeSort by relevance Sort by last modified time
    Searched refs:testDetails (Results 1 - 10 of 10) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 48 public static void setPassedResult(Activity activity, String testId, String testDetails) {
49 setPassedResult(activity, testId, testDetails, null /*reportLog*/);
53 public static void setPassedResult(Activity activity, String testId, String testDetails,
56 testDetails, reportLog));
60 public static void setFailedResult(Activity activity, String testId, String testDetails) {
61 setFailedResult(activity, testId, testDetails, null /*reportLog*/);
65 public static void setFailedResult(Activity activity, String testId, String testDetails,
68 testDetails, reportLog));
72 String testDetails, ReportLog reportLog) {
74 addResultData(data, testResult, testName, testDetails, reportLog)
    [all...]
PassFailButtons.java 402 String testDetails, ReportLog reportLog, View target) {
412 setTestResultAndFinishHelper(activity, testId, testDetails, passed, reportLog);
417 String testDetails, boolean passed, ReportLog reportLog) {
419 TestResult.setPassedResult(activity, testId, testDetails, reportLog);
421 TestResult.setFailedResult(activity, testId, testDetails, reportLog);
TestResultsProvider.java 76 static final String COLUMN_TEST_DETAILS = "testdetails";
229 String testDetails, ReportLog reportLog) {
233 values.put(TestResultsProvider.COLUMN_TEST_DETAILS, testDetails);
TestListAdapter.java 245 String testDetails = cursor.getString(3);
248 details.put(testName, testDetails);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 58 SensorTestDetails testDetails = executeTest(testMethod);
59 getTestLogger().logTestDetails(testDetails);
91 SensorTestDetails testDetails;
95 testDetails =
99 testDetails = new SensorTestDetails(testName, "TestExecution", e.getCause());
101 testDetails = new SensorTestDetails(testName, "TestInfrastructure", e);
104 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode();
121 return testDetails;
BaseSensorTestActivity.java 190 SensorTestDetails testDetails;
193 testDetails = new SensorTestDetails(testName, SensorTestDetails.ResultCode.PASS);
195 testDetails = new SensorTestDetails(testName, "DeactivateSensorFeatures", e);
198 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode();
204 testDetails = executeActivityTests(testName);
212 testDetails = new SensorTestDetails(testName, "RestoreSensorFeatures", e);
215 mTestLogger.logTestDetails(testDetails);
220 promptUserToSetResult(testDetails);
452 private void setTestResult(SensorTestDetails testDetails) {
456 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
SensorPowerTestActivity.java 55 public void logTestResult(SensorTestDetails testDetails) {
56 getTestLogger().logTestDetails(testDetails);
100 SensorTestDetails testDetails = new SensorTestDetails(
106 Assert.assertEquals(testDetails.getSummary(), 0, testResult.failedCount);
107 return testDetails.getSummary();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
BaseGnssTestActivity.java 172 GnssTestDetails testDetails;
174 testDetails = new GnssTestDetails(testName, GnssTestDetails.ResultCode.PASS);
176 testDetails = new GnssTestDetails(testName, "DeactivateFeatures", e);
179 GnssTestDetails.ResultCode resultCode = testDetails.getResultCode();
185 testDetails = executeActivityTests(testName);
189 updateResult(testDetails);
335 private void setTestResult(GnssTestDetails testDetails) {
338 GnssTestDetails.ResultCode resultCode = testDetails.getResultCode();
358 GnssTestDetails testDetails;
361 testDetails = new GnssTestDetails(testName, GnssTestDetails.ResultCode.PASS)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
PowerTestHostLink.java 54 void logTestResult(SensorTestDetails testDetails);
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
BasicHtmlSanitizerTest.java 300 public void testDetails() {
    [all...]

Completed in 444 milliseconds