summaryrefslogtreecommitdiff
path: root/tests/src/com/android/providers/contactstests/SyncContactsInstrumentation.java
blob: 373523d8f34a5ebc3e6372690710ba4e8dec3398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.android.providers.contactstests;

import com.android.providers.contacts.SyncContactsTest;

import junit.framework.TestSuite;

import android.test.InstrumentationTestRunner;
import android.test.InstrumentationTestSuite;
import android.test.suitebuilder.annotation.Suppress;

@Suppress
public class SyncContactsInstrumentation extends InstrumentationTestRunner {
    public TestSuite getAllTests() {
        TestSuite suite = new InstrumentationTestSuite(this);
        suite.addTestSuite(SyncContactsTest.class);
        return suite;
    }

    public ClassLoader getLoader() {
        return SyncContactsTest.class.getClassLoader();
    }
}