Searched refs:mTestResult (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/test-runner/src/android/test/ |
D | InstrumentationTestRunner.java | 671 private Bundle mTestResult; field in InstrumentationTestRunner.SuiteAssignmentPrinter 708 mTestResult = new Bundle(); in endTest() 727 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in endTest() 731 mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime); in endTest() 732 mTestResult.putString(REPORT_KEY_SUITE_ASSIGNMENT, assignmentSuite); in endTest() 734 sendStatus(0, mTestResult); in endTest() 743 Bundle mTestResult; field in InstrumentationTestRunner.WatcherResultPrinter 764 mTestResult = new Bundle(mResultTemplate); in startTest() 765 mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass); in startTest() 766 mTestResult.putString(REPORT_KEY_NAME_TEST, testName); in startTest() [all …]
|
D | AndroidTestRunner.java | 37 private TestResult mTestResult; field in AndroidTestRunner 171 return mTestResult; in getTestResult() 179 mTestResult = testResult; in runTest() 182 mTestResult.addListener(testListener); in runTest() 190 testCase.run(mTestResult); in runTest()
|
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/ |
D | UiAutomatorTestRunner.java | 214 Bundle mTestResult; field in UiAutomatorTestRunner.WatcherResultPrinter 233 mTestResult = new Bundle(mResultTemplate); in startTest() 234 mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass); in startTest() 235 mTestResult.putString(REPORT_KEY_NAME_TEST, testName); in startTest() 236 mTestResult.putInt(REPORT_KEY_NUM_CURRENT, ++mTestNum); in startTest() 239 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in startTest() 243 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, ""); in startTest() 253 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations); in startTest() 261 mAutomationSupport.sendStatus(REPORT_VALUE_RESULT_START, mTestResult); in startTest() 267 mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t)); in addError() [all …]
|