Lines Matching refs:framework

4   @Deprecated public class AndroidTestCase extends junit.framework.TestCase {
20 @Deprecated public class InstrumentationTestCase extends junit.framework.TestCase {
33 @Deprecated public class InstrumentationTestSuite extends junit.framework.TestSuite {
89 package junit.framework {
138 public class ComparisonFailure extends junit.framework.AssertionFailedError {
150 method public void run(junit.framework.TestResult);
153 public abstract class TestCase extends junit.framework.Assert implements junit.framework.Test {
157 method protected junit.framework.TestResult createResult();
159 method public junit.framework.TestResult run();
160 method public void run(junit.framework.TestResult);
169 ctor public TestFailure(junit.framework.Test, Throwable);
171 method public junit.framework.Test failedTest();
175 field protected junit.framework.Test fFailedTest;
180 method public void addError(junit.framework.Test, Throwable);
181 method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
182 method public void endTest(junit.framework.Test);
183 method public void startTest(junit.framework.Test);
188 method public void addError(junit.framework.Test, Throwable);
189 method public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError);
190 method public void addListener(junit.framework.TestListener);
191 method public void endTest(junit.framework.Test);
193 method public java.util.Enumeration<junit.framework.TestFailure> errors();
195 method public java.util.Enumeration<junit.framework.TestFailure> failures();
196 method public void removeListener(junit.framework.TestListener);
197 method protected void run(junit.framework.TestCase);
199 method public void runProtected(junit.framework.Test, junit.framework.Protectable);
201 method public void startTest(junit.framework.Test);
204 field protected java.util.Vector<junit.framework.TestFailure> fErrors;
205 field protected java.util.Vector<junit.framework.TestFailure> fFailures;
206 field protected java.util.Vector<junit.framework.TestListener> fListeners;
210 public class TestSuite implements junit.framework.Test {
213 ctor public TestSuite(Class<? extends junit.framework.TestCase>, String);
216 ctor public TestSuite(Class<? extends junit.framework.TestCase>[], String);
217 method public void addTest(junit.framework.Test);
218 method public void addTestSuite(Class<? extends junit.framework.TestCase>);
220 method public static junit.framework.Test createTest(Class<?>, String);
223 method public void run(junit.framework.TestResult);
224 method public void runTest(junit.framework.Test, junit.framework.TestResult);
226 method public junit.framework.Test testAt(int);
228 method public java.util.Enumeration<junit.framework.Test> tests();
229 method public static junit.framework.Test warning(String);