summaryrefslogtreecommitdiffstats
path: root/api/16.txt
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@android.com>2012-01-30 11:29:54 -0800
committerBrett Chabot <brettchabot@android.com>2012-04-11 19:01:30 -0700
commitf1253cd68a1ef45f4bb0c15d3e2834ca8f91e03f (patch)
tree5a3201faabf8ba048dcf5fb371900c15b4077f22 /api/16.txt
parent9766937ba57ca80977a68c681fdd4e46b6e1fd81 (diff)
downloadframeworks_base-f1253cd68a1ef45f4bb0c15d3e2834ca8f91e03f.zip
frameworks_base-f1253cd68a1ef45f4bb0c15d3e2834ca8f91e03f.tar.gz
frameworks_base-f1253cd68a1ef45f4bb0c15d3e2834ca8f91e03f.tar.bz2
Upgrade junit.runner classes to their JUnit4.10 implementation.
Bug 5826326 Change-Id: If7e4c48a4369c1056dee5a2049c891bb6ab7d8d0
Diffstat (limited to 'api/16.txt')
-rw-r--r--api/16.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/api/16.txt b/api/16.txt
index 8ff7675..18ba8d0 100644
--- a/api/16.txt
+++ b/api/16.txt
@@ -41832,7 +41832,7 @@ package junit.framework {
method public static void fail();
}
- public class AssertionFailedError extends java.lang.Error {
+ public class AssertionFailedError extends java.lang.AssertionError {
ctor public AssertionFailedError();
ctor public AssertionFailedError(java.lang.String);
}
@@ -41890,9 +41890,9 @@ package junit.framework {
method public synchronized void addListener(junit.framework.TestListener);
method public void endTest(junit.framework.Test);
method public synchronized int errorCount();
- method public synchronized java.util.Enumeration errors();
+ method public synchronized java.util.Enumeration<junit.framework.TestFailure> errors();
method public synchronized int failureCount();
- method public synchronized java.util.Enumeration failures();
+ method public synchronized java.util.Enumeration<junit.framework.TestFailure> failures();
method public synchronized void removeListener(junit.framework.TestListener);
method protected void run(junit.framework.TestCase);
method public synchronized int runCount();
@@ -41909,21 +41909,21 @@ package junit.framework {
public class TestSuite implements junit.framework.Test {
ctor public TestSuite();
- ctor public TestSuite(java.lang.Class, java.lang.String);
- ctor public TestSuite(java.lang.Class);
+ ctor public TestSuite(java.lang.Class<?>);
+ ctor public TestSuite(java.lang.Class<? extends junit.framework.TestCase>, java.lang.String);
ctor public TestSuite(java.lang.String);
method public void addTest(junit.framework.Test);
- method public void addTestSuite(java.lang.Class);
+ method public void addTestSuite(java.lang.Class<? extends junit.framework.TestCase>);
method public int countTestCases();
- method public static junit.framework.Test createTest(java.lang.Class, java.lang.String);
+ method public static junit.framework.Test createTest(java.lang.Class<?>, java.lang.String);
method public java.lang.String getName();
- method public static java.lang.reflect.Constructor getTestConstructor(java.lang.Class) throws java.lang.NoSuchMethodException;
+ method public static java.lang.reflect.Constructor<?> getTestConstructor(java.lang.Class) throws java.lang.NoSuchMethodException;
method public void run(junit.framework.TestResult);
method public void runTest(junit.framework.Test, junit.framework.TestResult);
method public void setName(java.lang.String);
method public junit.framework.Test testAt(int);
method public int testCount();
- method public java.util.Enumeration tests();
+ method public java.util.Enumeration<junit.framework.Test> tests();
}
}
@@ -41946,7 +41946,7 @@ package junit.runner {
method protected static java.util.Properties getPreferences();
method public junit.framework.Test getTest(java.lang.String);
method public static boolean inVAJava();
- method protected java.lang.Class loadSuiteClass(java.lang.String) throws java.lang.ClassNotFoundException;
+ method protected java.lang.Class<?> loadSuiteClass(java.lang.String) throws java.lang.ClassNotFoundException;
method protected java.lang.String processArguments(java.lang.String[]);
method protected abstract void runFailed(java.lang.String);
method public static void savePreferences() throws java.io.IOException;