• Home
  • Raw
  • Download

Lines Matching refs:mTestResult

653         private Bundle mTestResult;  field in InstrumentationTestRunner.SuiteAssignmentPrinter
690 mTestResult = new Bundle(); in endTest()
709 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in endTest()
713 mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime); in endTest()
714 mTestResult.putString(REPORT_KEY_SUITE_ASSIGNMENT, assignmentSuite); in endTest()
716 sendStatus(0, mTestResult); in endTest()
725 Bundle mTestResult; field in InstrumentationTestRunner.WatcherResultPrinter
746 mTestResult = new Bundle(mResultTemplate); in startTest()
747 mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass); in startTest()
748 mTestResult.putString(REPORT_KEY_NAME_TEST, testName); in startTest()
749 mTestResult.putInt(REPORT_KEY_NUM_CURRENT, ++mTestNum); in startTest()
752 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in startTest()
756 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, ""); in startTest()
766 mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations); in startTest()
784 sendStatus(REPORT_VALUE_RESULT_START, mTestResult); in startTest()
816 mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t)); in addError()
819 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in addError()
828 mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t)); in addFailure()
831 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, in addFailure()
841 mTestResult.putAll(mPerfCollector.endSnapshot()); in endTest()
847 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, "."); in endTest()
849 sendStatus(mTestResultCode, mTestResult); in endTest()
880 mTestResult.putString(index + PerformanceCollector.METRIC_KEY_LABEL, in writeStopTiming()
882 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_CPU_TIME, in writeStopTiming()
884 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_EXECUTION_TIME, in writeStopTiming()
891 mTestResult.putLong(label, value); in writeMeasurement()
895 mTestResult.putFloat(label, value); in writeMeasurement()
899 mTestResult.putString(label, value); in writeMeasurement()