Home
last modified time | relevance | path

Searched refs:testDetails (Results 1 – 8 of 8) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestResult.java48 public static void setPassedResult(Activity activity, String testId, String testDetails) { in setPassedResult() argument
49 setPassedResult(activity, testId, testDetails, null /*reportLog*/); in setPassedResult()
53 public static void setPassedResult(Activity activity, String testId, String testDetails, in setPassedResult() argument
56 testDetails, reportLog)); in setPassedResult()
60 public static void setFailedResult(Activity activity, String testId, String testDetails) { in setFailedResult() argument
61 setFailedResult(activity, testId, testDetails, null /*reportLog*/); in setFailedResult()
65 public static void setFailedResult(Activity activity, String testId, String testDetails, in setFailedResult() argument
68 testDetails, reportLog)); in setFailedResult()
72 String testDetails, ReportLog reportLog) { in createResult() argument
74 addResultData(data, testResult, testName, testDetails, reportLog); in createResult()
[all …]
DPassFailButtons.java400 String testDetails, ReportLog reportLog, View target) { in setTestResultAndFinish() argument
412 setTestResultAndFinishHelper(activity, testId, testDetails, passed, reportLog); in setTestResultAndFinish()
417 String testDetails, boolean passed, ReportLog reportLog) { in setTestResultAndFinishHelper() argument
419 TestResult.setPassedResult(activity, testId, testDetails, reportLog); in setTestResultAndFinishHelper()
421 TestResult.setFailedResult(activity, testId, testDetails, reportLog); in setTestResultAndFinishHelper()
DTestResultsProvider.java215 String testDetails, ReportLog reportLog) { in setTestResult() argument
219 values.put(TestResultsProvider.COLUMN_TEST_DETAILS, testDetails); in setTestResult()
DTestListAdapter.java245 String testDetails = cursor.getString(3); in getRefreshResults() local
248 details.put(testName, testDetails); in getRefreshResults()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsVerifierTestActivity.java58 SensorTestDetails testDetails = executeTest(testMethod); in executeTests() local
59 getTestLogger().logTestDetails(testDetails); in executeTests()
91 SensorTestDetails testDetails; in executeTest() local
95 testDetails = in executeTest()
99 testDetails = new SensorTestDetails(testName, "TestExecution", e.getCause()); in executeTest()
101 testDetails = new SensorTestDetails(testName, "TestInfrastructure", e); in executeTest()
104 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in executeTest()
121 return testDetails; in executeTest()
DBaseSensorTestActivity.java189 SensorTestDetails testDetails; in run() local
192 testDetails = new SensorTestDetails(testName, SensorTestDetails.ResultCode.PASS); in run()
194 testDetails = new SensorTestDetails(testName, "DeactivateSensorFeatures", e); in run()
197 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in run()
203 testDetails = executeActivityTests(testName); in run()
211 testDetails = new SensorTestDetails(testName, "RestoreSensorFeatures", e); in run()
214 mTestLogger.logTestDetails(testDetails); in run()
219 promptUserToSetResult(testDetails); in run()
426 private void setTestResult(SensorTestDetails testDetails) { in setTestResult() argument
430 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in setTestResult()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DSensorPowerTestActivity.java55 public void logTestResult(SensorTestDetails testDetails) { in logTestResult() argument
56 getTestLogger().logTestDetails(testDetails); in logTestResult()
100 SensorTestDetails testDetails = new SensorTestDetails( in testSensorsPower() local
106 Assert.assertEquals(testDetails.getSummary(), 0, testResult.failedCount); in testSensorsPower()
107 return testDetails.getSummary(); in testSensorsPower()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
DPowerTestHostLink.java54 void logTestResult(SensorTestDetails testDetails); in logTestResult() argument