Add public API
RepetitiveTest class is added to public API in android.test.base Bug: 110404779 Test: m -j Change-Id: I80e772354c8cabf30ef513701cb7850590926dca
This commit is contained in:
@@ -48,6 +48,9 @@ package android.test {
|
||||
method public abstract void startTiming(boolean);
|
||||
}
|
||||
|
||||
public abstract deprecated class RepetitiveTest implements java.lang.annotation.Annotation {
|
||||
}
|
||||
|
||||
public abstract deprecated class UiThreadTest implements java.lang.annotation.Annotation {
|
||||
}
|
||||
|
||||
|
||||
@@ -26,8 +26,10 @@ import java.lang.annotation.Target;
|
||||
* When the annotation is present, the test method is executed the number of times specified by
|
||||
* numIterations and defaults to 1.
|
||||
*
|
||||
* {@hide} Not needed for public API.
|
||||
* @deprecated New tests should be written using the
|
||||
* <a href="{@docRoot}tools/testing-support-library/index.html">Android Testing Support Library</a>.
|
||||
*/
|
||||
@Deprecated
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface RepetitiveTest {
|
||||
@@ -37,4 +39,4 @@ public @interface RepetitiveTest {
|
||||
* @return The total number of iterations, the default is 1.
|
||||
*/
|
||||
int numIterations() default 1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user