Example usage for android.test AndroidTestCase subclass-usage

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

Introduction

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

Usage

From source file com.google.android.apps.authenticator.testability.HttpClientFactoryTest.java

/**
 * Unit tests for {@link HttpClientFactory}.
 *
 * @author klyubin@google.com (Alex Klyubin)
 */
public class HttpClientFactoryTest extends AndroidTestCase {

From source file com.docd.purefm.test.FileFactoryTest.java

/**
 * Tests {@link com.docd.purefm.file.FileFactory}
 *
 * @author Doctoror
 */
public final class FileFactoryTest extends AndroidTestCase {

From source file com.android.volley.toolbox.BasicNetworkTest.java

@SmallTest
public class BasicNetworkTest extends AndroidTestCase {

    @Override
    protected void setUp() throws Exception {
        super.setUp();

From source file com.futureplatforms.kirin.test.DynamicProxyTest.java

public class DynamicProxyTest extends AndroidTestCase {
    private ProxyGenerator mGenerator;
    private DummyKirinHelper mKirinHelper;

    public static interface ITestModule {
        void withNoArgs();

From source file de.akquinet.gomobile.androlog.test.MailReporterTest.java

public class MailReporterTest extends AndroidTestCase {

    private File testContext;

    public void setUp() {
        try {

From source file com.android.net.volley.toolbox.BasicNetworkTest.java

@SmallTest
public class BasicNetworkTest extends AndroidTestCase {

    @Override
    protected void setUp() throws Exception {
        super.setUp();

From source file com.appunite.socketio.IOMessageTest.java

public class IOMessageTest extends AndroidTestCase {

    private void assertFailParsing(String message) {
        try {
            IOMessage.parse(message);
            fail("Should throw error while parsing: " + message);

From source file com.android.exchange.EasSyncServiceTests.java

/**
 * You can run this entire test case with:
 * runtest -c com.android.exchange.EasSyncServiceTests email
 */
public class EasSyncServiceTests extends AndroidTestCase {
    Context mMockContext;

From source file com.mwebster.exchange.EasSyncServiceTests.java

/**
 * You can run this entire test case with:
 * runtest -c com.mwebster.exchange.EasSyncServiceTests email
 */
public class EasSyncServiceTests extends AndroidTestCase {
    Context mMockContext;

From source file org.umit.icm.mobile.test.utils.RSACryptoTests.java

public class RSACryptoTests extends AndroidTestCase {
    private KeyPair keyPair;

    public void testPublicEncryptDecrypt() throws Throwable {
        keyPair = RSACrypto.generateKey();
        String cipherText = RSACrypto.encryptPublic(keyPair.getPublic(), "This is a test string");