Home
last modified time | relevance | path

Searched refs:testDetails (Results 1 – 12 of 12) 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.java402 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.java229 String testDetails, ReportLog reportLog) { in setTestResult() argument
233 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.java190 SensorTestDetails testDetails; in run() local
193 testDetails = new SensorTestDetails(testName, SensorTestDetails.ResultCode.PASS); in run()
195 testDetails = new SensorTestDetails(testName, "DeactivateSensorFeatures", e); in run()
198 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in run()
204 testDetails = executeActivityTests(testName); in run()
212 testDetails = new SensorTestDetails(testName, "RestoreSensorFeatures", e); in run()
215 mTestLogger.logTestDetails(testDetails); in run()
220 promptUserToSetResult(testDetails); in run()
452 private void setTestResult(SensorTestDetails testDetails) { in setTestResult() argument
456 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in setTestResult()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
DBaseGnssTestActivity.java172 GnssTestDetails testDetails; in run() local
174 testDetails = new GnssTestDetails(testName, GnssTestDetails.ResultCode.PASS); in run()
176 testDetails = new GnssTestDetails(testName, "DeactivateFeatures", e); in run()
179 GnssTestDetails.ResultCode resultCode = testDetails.getResultCode(); in run()
185 testDetails = executeActivityTests(testName); in run()
189 updateResult(testDetails); in run()
335 private void setTestResult(GnssTestDetails testDetails) { in setTestResult() argument
338 GnssTestDetails.ResultCode resultCode = testDetails.getResultCode(); in setTestResult()
358 GnssTestDetails testDetails; in executeActivityTests() local
361 testDetails = new GnssTestDetails(testName, GnssTestDetails.ResultCode.PASS); in executeActivityTests()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
DRobustnessTest.java122 String testDetails = in recordTimerTestResults() local
126 Log.e("Timer Result", testDetails); in recordTimerTestResults()
127 mTestReport.setFailDetails(testDetails); in recordTimerTestResults()
164 String testDetails = in recordRotationTestResults() local
168 Log.e("Timer Result", testDetails); in recordRotationTestResults()
169 mTestReport.setFailDetails(testDetails); in recordRotationTestResults()
190 … String testDetails = "Test terminated as it its impossible to pass the remaining rotations"; in getRotationData() local
192 Log.e("Rotation test:", testDetails); in getRotationData()
193 mTestReport.setFailDetails(testDetails); in getRotationData()
DTest.java167 String testDetails = mTestPhaseName + in recordMarkerTestResults() local
171 Log.e("Marker Result", testDetails); in recordMarkerTestResults()
172 mTestReport.setFailDetails(testDetails); in recordMarkerTestResults()
258 String testDetails = mTestPhaseName + in recordPathTestResults() local
262 Log.e("Path Result", testDetails); in recordPathTestResults()
263 mTestReport.setFailDetails(testDetails); in recordPathTestResults()
DComplexMovementTest.java108 String testDetails = in recordRingTestResults() local
111 Log.e("Ring Result", testDetails); in recordRingTestResults()
112 mTestReport.setFailDetails(testDetails); in recordRingTestResults()
/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