/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TestResult.java | 59 public static void setPassedResult(Activity activity, String testId, String testDetails) { in setPassedResult() argument 60 setPassedResult(activity, testId, testDetails, null /*reportLog*/); in setPassedResult() 64 public static void setPassedResult(Activity activity, String testId, String testDetails, in setPassedResult() argument 66 setPassedResult(activity, testId, testDetails, reportLog, null /*history*/); in setPassedResult() 70 public static void setPassedResult(Activity activity, String testId, String testDetails, in setPassedResult() argument 73 + ", testDetails=" + testDetails); in setPassedResult() 78 activity, testId, 1, testDetails, reportLog, historyCollection, in setPassedResult() 82 testDetails, reportLog, historyCollection)); in setPassedResult() 86 public static void setFailedResult(Activity activity, String testId, String testDetails) { in setFailedResult() argument 87 setFailedResult(activity, testId, testDetails, null /*reportLog*/); in setFailedResult() [all …]
|
D | PassFailButtons.java | 675 String testDetails, ReportLog reportLog, TestResultHistoryCollection historyCollection, in setTestResultAndFinish() argument 690 … setTestResultAndFinishHelper(activity, testId, testDetails, passed, reportLog, historyCollection); in setTestResultAndFinish() 695 String testDetails, boolean passed, ReportLog reportLog, in setTestResultAndFinishHelper() argument 698 TestResult.setPassedResult(activity, testId, testDetails, reportLog, historyCollection); in setTestResultAndFinishHelper() 700 TestResult.setFailedResult(activity, testId, testDetails, reportLog, historyCollection); in setTestResultAndFinishHelper() 706 activity, testId, passed ? 1 : 2, testDetails, reportLog, historyCollection, in setTestResultAndFinishHelper()
|
D | TestResultsProvider.java | 124 String testDetails, ReportLog reportLog, TestResultHistoryCollection historyCollection, in setTestResult() argument 129 values.put(TestResultsProvider.COLUMN_TEST_DETAILS, testDetails); in setTestResult()
|
D | TestListAdapter.java | 544 String testDetails = cursor.getString(3); in getRefreshResults() local 551 details.put(testName, testDetails); in getRefreshResults()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/ |
D | SensorCtsVerifierTestActivity.java | 79 SensorTestDetails testDetails = executeTest(testMethod); in executeTests() local 80 getTestLogger().logTestDetails(testDetails); in executeTests() 83 while (mEnableRetry && testDetails.getResultCode().equals(ResultCode.FAIL)) { in executeTests() 93 testDetails = executeTest(testMethod); in executeTests() 94 getTestLogger().logTestDetails(testDetails); in executeTests() 127 SensorTestDetails testDetails; in executeTest() local 130 testDetails = in executeTest() 134 testDetails = new SensorTestDetails(testName, "TestExecution", e.getCause()); in executeTest() 136 testDetails = new SensorTestDetails(testName, "TestInfrastructure", e); in executeTest() 139 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in executeTest() [all …]
|
D | BaseSensorTestActivity.java | 212 SensorTestDetails testDetails; in run() local 215 testDetails = new SensorTestDetails(testName, SensorTestDetails.ResultCode.PASS); in run() 217 testDetails = new SensorTestDetails(testName, "DeactivateSensorFeatures", e); in run() 220 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in run() 226 testDetails = executeActivityTests(testName); in run() 234 testDetails = new SensorTestDetails(testName, "RestoreSensorFeatures", e); in run() 237 mTestLogger.logTestDetails(testDetails); in run() 242 promptUserToSetResult(testDetails); in run() 482 private void setTestResult(SensorTestDetails testDetails) { in setTestResult() argument 488 SensorTestDetails.ResultCode resultCode = testDetails.getResultCode(); in setTestResult() [all …]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/ |
D | RobustnessTest.java | 122 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()
|
D | Test.java | 167 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()
|
D | ComplexMovementTest.java | 108 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/ |
D | SensorPowerTestActivity.java | 55 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/ |
D | PowerTestHostLink.java | 54 void logTestResult(SensorTestDetails testDetails); in logTestResult() argument
|