Example usage for android.test InstrumentationTestCase subclass-usage

List of usage examples for android.test InstrumentationTestCase subclass-usage

Introduction

In this page you can find the example usage for android.test InstrumentationTestCase subclass-usage.

Usage

From source file com.apptentive.android.sdk.tests.model.ObjectDiffingTests.java

/**
 * @author Sky Kelsey
 */
public class ObjectDiffingTests extends InstrumentationTestCase {

    private static final String TEST_DATA_DIR = "util" + File.separator;

From source file at.bitfire.davdroid.SSLSocketFactoryCompatTest.java

public class SSLSocketFactoryCompatTest extends InstrumentationTestCase {

    SSLSocketFactoryCompat factory;
    MockWebServer server = new MockWebServer();

    @Override

From source file com.flowzr.rates.AbstractRatesDownloaderTest.java

/**
 * Created with IntelliJ IDEA.
 * User: dsolonenko
 * Date: 2/18/13
 * Time: 10:33 PM
 */

From source file it.crs4.most.ehrlib.test.TestAdlParser.java

public class TestAdlParser extends InstrumentationTestCase {

    private static final String TAG = "TestAdlParser";

    private Context context = null;

From source file at.bitfire.davdroid.webdav.DavHttpClientTest.java

public class DavHttpClientTest extends InstrumentationTestCase {
    final static URI testCookieURI = TestConstants.roboHydra.resolve("/dav/testCookieStore");

    CloseableHttpClient httpClient;

    @Override

From source file com.granita.icloudcalsync.webdav.DavHttpClientTest.java

public class DavHttpClientTest extends InstrumentationTestCase {
    final static URI testCookieURI = TestConstants.roboHydra.resolve("/dav/testCookieStore");

    CloseableHttpClient httpClient;

    @Override

From source file ru.orangesoftware.financisto.rates.AbstractRatesDownloaderTest.java

/**
 * Created with IntelliJ IDEA.
 * User: dsolonenko
 * Date: 2/18/13
 * Time: 10:33 PM
 */

From source file org.andstatus.app.net.http.HttpReadResultTest.java

public class HttpReadResultTest extends InstrumentationTestCase {

    public void testResultToArray() throws ConnectionException, JSONException {
        final String url = "https://example.com/somepath/file.html";
        final String in = "{\"results\":[{\"text\":\"Text1\",\"to_user\":\"someuser\",\"from_user\":\"author1\"},"
                + "{\"text\":\"Text2\",\"to_user\":\"andstatus\",\"from_user\":\"otherauthor\"}]"

From source file net.benmoran.affectsampler.SerializationTest.java

public class SerializationTest extends InstrumentationTestCase {
    protected PrefsVO mPrefs;
    protected Context mContext;
    protected JSONArray mJSONArray;

    protected void setUp() throws Exception {

From source file org.andstatus.app.util.UriUtilsTest.java

@Travis
public class UriUtilsTest extends InstrumentationTestCase {
    private static Uri[] EMPTY_URIS = { (Uri) null, Uri.EMPTY, Uri.parse(""), UriUtils.fromString(""),
            UriUtils.fromString(" ") };

    public void testIsEmpty() {