Lines Matching refs:mTestResult

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()
767 mTestResult.putInt(REPORT_KEY_NUM_CURRENT, ++mTestNum); in startTest()
770 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in startTest()
774 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, ""); in startTest()
784 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations); in startTest()
802 sendStatus(REPORT_VALUE_RESULT_START, mTestResult); in startTest()
834 mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t)); in addError()
837 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in addError()
846 mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t)); in addFailure()
849 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in addFailure()
859 mTestResult.putAll(mPerfCollector.endSnapshot()); in endTest()
865 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, "."); in endTest()
867 sendStatus(mTestResultCode, mTestResult); in endTest()
898 mTestResult.putString(index + PerformanceCollector.METRIC_KEY_LABEL, in writeStopTiming()
900 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_CPU_TIME, in writeStopTiming()
902 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_EXECUTION_TIME, in writeStopTiming()
909 mTestResult.putLong(label, value); in writeMeasurement()
913 mTestResult.putFloat(label, value); in writeMeasurement()
917 mTestResult.putString(label, value); in writeMeasurement()