Home | History | Annotate | Download | only in test

Lines Matching defs:runTime

194      * This constant defines the maximum allowed runtime (in ms) for a test included in the "small"
200 * This constant defines the maximum allowed runtime (in ms) for a test included in the
244 private static final String REPORT_KEY_RUN_TIME = "runtime";
555 long runTime = System.currentTimeMillis() - startTime;
557 resultPrinter.printResult(mTestRunner.getTestResult(), runTime);
658 public synchronized void printResult(TestResult result, long runTime) {
659 printHeader(runTime);
704 float runTime;
711 runTime = -1;
713 runTime = mEndTime - mStartTime;
714 if (runTime < SMALL_SUITE_MAX_RUNTIME
717 } else if (runTime < MEDIUM_SUITE_MAX_RUNTIME) {
729 + String.valueOf(runTime) + "\n");
730 mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime);