List of usage examples for android.test AndroidTestCase subclass-usage
From source file com.indeema.email.mail.store.imap.ImapStringTest.java
/** * Test for {@link com.indeema.email.mail.store.imap.ImapString} and its subclasses. */ @SmallTest public class ImapStringTest extends AndroidTestCase {
From source file com.android.net.volley.toolbox.HttpClientStackTest.java
@SmallTest public class HttpClientStackTest extends AndroidTestCase { @Override protected void setUp() throws Exception { super.setUp();
From source file com.msopentech.thali.local.utilities.UtilitiesTestCase.java
public class UtilitiesTestCase extends AndroidTestCase { // These are used for NetworkPerfTests, I put them here so they don't get nuked when we copy // over from Android to Java. Normally this variable is set to null but when given a value it's used to // skip creating a new Thali listener on each test pass and instead just listen to an external listener that is // always running. That way we don't have to start and stop listeners on each test pass. This is intended // for when we are doing manual testing and exploring different perf issues.
From source file com.android.unit_tests.CheckinProviderTest.java
/** Unit test for {@link CheckinProvider}. */ public class CheckinProviderTest extends AndroidTestCase { @MediumTest public void testEventReport() { long start = System.currentTimeMillis(); ContentResolver r = getContext().getContentResolver();
From source file com.android.unit_tests.GoogleHttpClientTest.java
/** Unit test for {@link GoogleHttpClient}. */ public class GoogleHttpClientTest extends AndroidTestCase { private TestHttpServer mServer; private String mServerUrl; protected void setUp() throws Exception {
From source file android.security.cts.BrowserTest.java
/** * Test file for browser security issues. */ public class BrowserTest extends AndroidTestCase { private CtsTestServer mWebServer;
From source file com.magnet.android.mms.request.GenericResponseParserPrimitiveTest.java
public class GenericResponseParserPrimitiveTest extends AndroidTestCase { static final Logger logger = Logger.getLogger(GenericResponseParserPrimitiveTest.class.getSimpleName()); @SmallTest public void testVoidResponse() throws MobileException { GenericResponseParser parser = new GenericResponseParser(Void.class);
From source file org.ado.minesync.MineSyncDbOpenHelperTest.java
@Ignore public class MineSyncDbOpenHelperTest extends AndroidTestCase { private static final Date TEST_DATE = DateUtils.parse("06.05.1981 00:40:01"); private static final WorldEntity WORLD_ENTITY = new WorldEntity(1, "world", TEST_DATE, 22, SyncTypeEnum.AUTO);
From source file com.docd.purefm.test.PFMFileUtilsTest.java
/** * Tests PFMFileUtils copy and move methods */ public final class PFMFileUtilsTest extends AndroidTestCase { private static final File testDir = new File(Environment.getExternalStorageDirectory(), "_test_PFMFileUtils");
From source file com.umeng.network.test.LURCacheTest.java
public class LURCacheTest extends AndroidTestCase { /** * Reponse */ private LruCache<Request<?>, Response> mResponseCache;