Lines Matching refs:framework

4   @Deprecated public class AndroidTestCase extends junit.framework.TestCase {
22 @Deprecated public class InstrumentationTestCase extends junit.framework.TestCase {
35 @Deprecated public class InstrumentationTestSuite extends junit.framework.TestSuite {
91 package junit.framework {
140 public class ComparisonFailure extends junit.framework.AssertionFailedError {
152 method public void run(junit.framework.TestResult);
155 public abstract class TestCase extends junit.framework.Assert implements junit.framework.Test {
159 method protected junit.framework.TestResult createResult();
161 method public junit.framework.TestResult run();
162 method public void run(junit.framework.TestResult);
171 ctor public TestFailure(junit.framework.Test, Throwable);
173 method public junit.framework.Test failedTest();
177 field protected junit.framework.Test fFailedTest;
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);
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);
195 method public java.util.Enumeration<junit.framework.TestFailure> errors();
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);
201 method public void runProtected(junit.framework.Test, junit.framework.Protectable);
203 method public void startTest(junit.framework.Test);
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;
212 public class TestSuite implements junit.framework.Test {
215 ctor public TestSuite(Class<? extends junit.framework.TestCase>, String);
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>);
222 method public static junit.framework.Test createTest(Class<?>, String);
225 method public void run(junit.framework.TestResult);
226 method public void runTest(junit.framework.Test, junit.framework.TestResult);
228 method public junit.framework.Test testAt(int);
230 method public java.util.Enumeration<junit.framework.Test> tests();
231 method public static junit.framework.Test warning(String);