Home | History | Annotate | Download | only in test

Lines Matching refs:runTime

186      * This constant defines the maximum allowed runtime (in ms) for a test included in the "small"
192 * This constant defines the maximum allowed runtime (in ms) for a test included in the
236 private static final String REPORT_KEY_RUN_TIME = "runtime";
538 long runTime = System.currentTimeMillis() - startTime;
540 resultPrinter.print(mTestRunner.getTestResult(), runTime);
641 synchronized void print(TestResult result, long runTime) {
642 printHeader(runTime);
687 float runTime;
694 runTime = -1;
696 runTime = mEndTime - mStartTime;
697 if (runTime < SMALL_SUITE_MAX_RUNTIME
700 } else if (runTime < MEDIUM_SUITE_MAX_RUNTIME) {
712 + String.valueOf(runTime) + "\n");
713 mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime);