android.test.AndroidTestCase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-test Show documentation
Show all versions of android-test Show documentation
A library jar that provides APIs for testing Applications written for the Google Android Platform.
The newest version!
package android.test;
public class AndroidTestCase
extends junit.framework.TestCase
{
public AndroidTestCase() { throw new RuntimeException("Stub!"); }
protected void setUp() throws java.lang.Exception { throw new RuntimeException("Stub!"); }
protected void tearDown() throws java.lang.Exception { throw new RuntimeException("Stub!"); }
public void testAndroidTestCaseSetupProperly() { throw new RuntimeException("Stub!"); }
public void setContext(android.content.Context context) { throw new RuntimeException("Stub!"); }
public android.content.Context getContext() { throw new RuntimeException("Stub!"); }
public void assertActivityRequiresPermission(java.lang.String packageName, java.lang.String className, java.lang.String permission) { throw new RuntimeException("Stub!"); }
public void assertReadingContentUriRequiresPermission(android.net.Uri uri, java.lang.String permission) { throw new RuntimeException("Stub!"); }
public void assertWritingContentUriRequiresPermission(android.net.Uri uri, java.lang.String permission) { throw new RuntimeException("Stub!"); }
protected void scrubClass(java.lang.Class> testCaseClass) throws java.lang.IllegalAccessException { throw new RuntimeException("Stub!"); }
protected android.content.Context mContext;
}