Search in sources :

Example 41 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

the class ConnectivityManagerTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(ConnectivityManagerMobileTest.class);
    suite.addTestSuite(WifiConnectionTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 42 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

the class ConnectivityManagerUnitTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(WifiClientTest.class);
    suite.addTestSuite(WifiSoftAPTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 43 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by crdroidandroid.

the class ConnectivityManagerUnitTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(WifiClientTest.class);
    suite.addTestSuite(WifiSoftAPTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 44 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_packages_apps_Camera by CyanogenMod.

the class CameraTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(CameraActivityTest.class);
    suite.addTestSuite(CameraTest.class);
    suite.addTestSuite(ImageCaptureIntentTest.class);
    suite.addTestSuite(VideoCaptureIntentTest.class);
    suite.addTestSuite(CameraUnitTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 45 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_packages_apps_Camera by CyanogenMod.

the class CameraStressTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(ImageCapture.class);
    suite.addTestSuite(VideoCapture.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Aggregations

InstrumentationTestSuite (android.test.InstrumentationTestSuite)97 TestSuite (junit.framework.TestSuite)97