blob: 2584da20e9beae0d015d7d1632c2a11f92889e7b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.test;
18
19/**
20 * More complex interface performance for test cases.
Stephan Linznerb51617f2016-01-27 18:09:50 -080021 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022 * If you want your test to be used as a performance test, you must
23 * implement this interface.
Paul Duffin2d86c7a2018-02-16 13:11:05 +000024 *
25 * @deprecated Use
26 * <a href="{@docRoot}reference/android/support/test/runner/AndroidJUnitRunner.html">
27 * AndroidJUnitRunner</a> instead. New tests should be written using the
28 * <a href="{@docRoot}tools/testing-support-library/index.html">Android Testing Support Library</a>.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029 */
Stephan Linznerb51617f2016-01-27 18:09:50 -080030@Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031public interface PerformanceTestCase
32{
33 /**
34 * Callbacks for {@link PerformanceTestCase}.
35 */
36 public interface Intermediates
37 {
38 void setInternalIterations(int count);
39 void startTiming(boolean realTime);
40 void addIntermediate(String name);
41 void addIntermediate(String name, long timeInNS);
42 void finishTiming(boolean realTime);
43 }
44
45 /**
Stephan Linznerb51617f2016-01-27 18:09:50 -080046 * Set up to begin performance tests. The 'intermediates' is a
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047 * communication channel to send back intermediate performance numbers --
48 * if you use it, you will probably want to ensure your test is only
49 * executed once by returning 1. Otherwise, return 0 to allow the test
50 * harness to decide the number of iterations.
Stephan Linznerb51617f2016-01-27 18:09:50 -080051 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 * <p>If you return a non-zero iteration count, you should call
53 * {@link Intermediates#startTiming intermediates.startTiming} and
54 * {@link Intermediates#finishTiming intermediates.endTiming} to report the
55 * duration of the test whose performance should actually be measured.
Stephan Linznerb51617f2016-01-27 18:09:50 -080056 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 * @param intermediates Callback for sending intermediate results.
Stephan Linznerb51617f2016-01-27 18:09:50 -080058 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 * @return int Maximum number of iterations to run, or 0 to let the caller
Stephan Linznerb51617f2016-01-27 18:09:50 -080060 * decide.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 */
62 int startPerformance(Intermediates intermediates);
Stephan Linznerb51617f2016-01-27 18:09:50 -080063
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 /**
65 * This method is used to determine what modes this test case can run in.
Stephan Linznerb51617f2016-01-27 18:09:50 -080066 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 * @return true if this test case can only be run in performance mode.
68 */
69 boolean isPerformanceOnly();
70}
71