Home | History | Annotate | Download | only in test

Lines Matching refs:runTime

195      * This constant defines the maximum allowed runtime (in ms) for a test included in the "small"
201 * This constant defines the maximum allowed runtime (in ms) for a test included in the
245 private static final String REPORT_KEY_RUN_TIME = "runtime";
556 long runTime = System.currentTimeMillis() - startTime;
558 resultPrinter.printResult(mTestRunner.getTestResult(), runTime);
659 public synchronized void printResult(TestResult result, long runTime) {
660 printHeader(runTime);
705 float runTime;
712 runTime = -1;
714 runTime = mEndTime - mStartTime;
715 if (runTime < SMALL_SUITE_MAX_RUNTIME
718 } else if (runTime < MEDIUM_SUITE_MAX_RUNTIME) {
730 + String.valueOf(runTime) + "\n");
731 mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime);