1// Signature format: 2.0
2package android.test {
3
4  @Deprecated public class AndroidTestCase extends junit.framework.TestCase {
5    ctor @Deprecated public AndroidTestCase();
6    method @Deprecated public void assertActivityRequiresPermission(String, String, String);
7    method @Deprecated public void assertReadingContentUriRequiresPermission(android.net.Uri, String);
8    method @Deprecated public void assertWritingContentUriRequiresPermission(android.net.Uri, String);
9    method @Deprecated public android.content.Context getContext();
10    method @Deprecated public android.content.Context getTestContext();
11    method @Deprecated protected void scrubClass(Class<?>) throws java.lang.IllegalAccessException;
12    method @Deprecated public void setContext(android.content.Context);
13    method @Deprecated public void setTestContext(android.content.Context);
14    method @Deprecated @android.test.suitebuilder.annotation.Suppress public void testAndroidTestCaseSetupProperly();
15    field @Deprecated protected android.content.Context mContext;
16  }
17
18  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface FlakyTest {
19    method @Deprecated public abstract int tolerance() default 1;
20  }
21
22  @Deprecated public class InstrumentationTestCase extends junit.framework.TestCase {
23    ctor @Deprecated public InstrumentationTestCase();
24    method @Deprecated public android.app.Instrumentation getInstrumentation();
25    method @Deprecated public void injectInsrumentation(android.app.Instrumentation);
26    method @Deprecated public void injectInstrumentation(android.app.Instrumentation);
27    method @Deprecated public final <T extends android.app.Activity> T launchActivity(String, Class<T>, android.os.Bundle);
28    method @Deprecated public final <T extends android.app.Activity> T launchActivityWithIntent(String, Class<T>, android.content.Intent);
29    method @Deprecated public void runTestOnUiThread(Runnable) throws java.lang.Throwable;
30    method @Deprecated public void sendKeys(String);
31    method @Deprecated public void sendKeys(int...);
32    method @Deprecated public void sendRepeatedKeys(int...);
33  }
34
35  @Deprecated public class InstrumentationTestSuite extends junit.framework.TestSuite {
36    ctor @Deprecated public InstrumentationTestSuite(android.app.Instrumentation);
37    ctor @Deprecated public InstrumentationTestSuite(String, android.app.Instrumentation);
38    ctor @Deprecated public InstrumentationTestSuite(Class, android.app.Instrumentation);
39    method @Deprecated public void addTestSuite(Class);
40  }
41
42  @Deprecated public interface PerformanceTestCase {
43    method @Deprecated public boolean isPerformanceOnly();
44    method @Deprecated public int startPerformance(android.test.PerformanceTestCase.Intermediates);
45  }
46
47  @Deprecated public static interface PerformanceTestCase.Intermediates {
48    method @Deprecated public void addIntermediate(String);
49    method @Deprecated public void addIntermediate(String, long);
50    method @Deprecated public void finishTiming(boolean);
51    method @Deprecated public void setInternalIterations(int);
52    method @Deprecated public void startTiming(boolean);
53  }
54
55  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface RepetitiveTest {
56    method @Deprecated public abstract int numIterations() default 1;
57  }
58
59  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD) public @interface UiThreadTest {
60  }
61
62}
63
64package android.test.suitebuilder.annotation {
65
66  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface LargeTest {
67  }
68
69  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface MediumTest {
70  }
71
72  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface SmallTest {
73  }
74
75  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface Smoke {
76  }
77
78  @Deprecated @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.TYPE}) public @interface Suppress {
79  }
80
81}
82
83package com.android.internal.util {
84
85  @Deprecated public interface Predicate<T> {
86    method @Deprecated public boolean apply(T);
87  }
88
89}
90
91package junit.framework {
92
93  public class Assert {
94    ctor protected Assert();
95    method public static void assertEquals(String, Object, Object);
96    method public static void assertEquals(Object, Object);
97    method public static void assertEquals(String, String, String);
98    method public static void assertEquals(String, String);
99    method public static void assertEquals(String, double, double, double);
100    method public static void assertEquals(double, double, double);
101    method public static void assertEquals(String, float, float, float);
102    method public static void assertEquals(float, float, float);
103    method public static void assertEquals(String, long, long);
104    method public static void assertEquals(long, long);
105    method public static void assertEquals(String, boolean, boolean);
106    method public static void assertEquals(boolean, boolean);
107    method public static void assertEquals(String, byte, byte);
108    method public static void assertEquals(byte, byte);
109    method public static void assertEquals(String, char, char);
110    method public static void assertEquals(char, char);
111    method public static void assertEquals(String, short, short);
112    method public static void assertEquals(short, short);
113    method public static void assertEquals(String, int, int);
114    method public static void assertEquals(int, int);
115    method public static void assertFalse(String, boolean);
116    method public static void assertFalse(boolean);
117    method public static void assertNotNull(Object);
118    method public static void assertNotNull(String, Object);
119    method public static void assertNotSame(String, Object, Object);
120    method public static void assertNotSame(Object, Object);
121    method public static void assertNull(Object);
122    method public static void assertNull(String, Object);
123    method public static void assertSame(String, Object, Object);
124    method public static void assertSame(Object, Object);
125    method public static void assertTrue(String, boolean);
126    method public static void assertTrue(boolean);
127    method public static void fail(String);
128    method public static void fail();
129    method public static void failNotEquals(String, Object, Object);
130    method public static void failNotSame(String, Object, Object);
131    method public static void failSame(String);
132    method public static String format(String, Object, Object);
133  }
134
135  public class AssertionFailedError extends java.lang.AssertionError {
136    ctor public AssertionFailedError();
137    ctor public AssertionFailedError(String);
138  }
139
140  public class ComparisonFailure extends junit.framework.AssertionFailedError {
141    ctor public ComparisonFailure(String, String, String);
142    method public String getActual();
143    method public String getExpected();
144  }
145
146  public interface Protectable {
147    method public void protect() throws java.lang.Throwable;
148  }
149
150  public interface Test {
151    method public int countTestCases();
152    method public void run(junit.framework.TestResult);
153  }
154
155  public abstract class TestCase extends junit.framework.Assert implements junit.framework.Test {
156    ctor public TestCase();
157    ctor public TestCase(String);
158    method public int countTestCases();
159    method protected junit.framework.TestResult createResult();
160    method public String getName();
161    method public junit.framework.TestResult run();
162    method public void run(junit.framework.TestResult);
163    method public void runBare() throws java.lang.Throwable;
164    method protected void runTest() throws java.lang.Throwable;
165    method public void setName(String);
166    method protected void setUp() throws java.lang.Exception;
167    method protected void tearDown() throws java.lang.Exception;
168  }
169
170  public class TestFailure {
171    ctor public TestFailure(junit.framework.Test, Throwable);
172    method public String exceptionMessage();
173    method public junit.framework.Test failedTest();
174    method public boolean isFailure();
175    method public Throwable thrownException();
176    method public String trace();
177    field protected junit.framework.Test fFailedTest;
178    field protected Throwable fThrownException;
179  }
180
181  public interface TestListener {
182    method public void addError(junit.framework.Test, Throwable);
183    method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
184    method public void endTest(junit.framework.Test);
185    method public void startTest(junit.framework.Test);
186  }
187
188  public class TestResult {
189    ctor public TestResult();
190    method public void addError(junit.framework.Test, Throwable);
191    method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
192    method public void addListener(junit.framework.TestListener);
193    method public void endTest(junit.framework.Test);
194    method public int errorCount();
195    method public java.util.Enumeration<junit.framework.TestFailure> errors();
196    method public int failureCount();
197    method public java.util.Enumeration<junit.framework.TestFailure> failures();
198    method public void removeListener(junit.framework.TestListener);
199    method protected void run(junit.framework.TestCase);
200    method public int runCount();
201    method public void runProtected(junit.framework.Test, junit.framework.Protectable);
202    method public boolean shouldStop();
203    method public void startTest(junit.framework.Test);
204    method public void stop();
205    method public boolean wasSuccessful();
206    field protected java.util.Vector<junit.framework.TestFailure> fErrors;
207    field protected java.util.Vector<junit.framework.TestFailure> fFailures;
208    field protected java.util.Vector<junit.framework.TestListener> fListeners;
209    field protected int fRunTests;
210  }
211
212  public class TestSuite implements junit.framework.Test {
213    ctor public TestSuite();
214    ctor public TestSuite(Class<?>);
215    ctor public TestSuite(Class<? extends junit.framework.TestCase>, String);
216    ctor public TestSuite(String);
217    ctor public TestSuite(Class<?>...);
218    ctor public TestSuite(Class<? extends junit.framework.TestCase>[], String);
219    method public void addTest(junit.framework.Test);
220    method public void addTestSuite(Class<? extends junit.framework.TestCase>);
221    method public int countTestCases();
222    method public static junit.framework.Test createTest(Class<?>, String);
223    method public String getName();
224    method public static java.lang.reflect.Constructor<?> getTestConstructor(Class<?>) throws java.lang.NoSuchMethodException;
225    method public void run(junit.framework.TestResult);
226    method public void runTest(junit.framework.Test, junit.framework.TestResult);
227    method public void setName(String);
228    method public junit.framework.Test testAt(int);
229    method public int testCount();
230    method public java.util.Enumeration<junit.framework.Test> tests();
231    method public static junit.framework.Test warning(String);
232  }
233
234}
235
236