Search in sources :

Example 46 with InstrumentationTestSuite

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

the class BluetoothTestRunner method getAllTests.

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

Example 47 with InstrumentationTestSuite

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

the class PowerTestRunner method getAllTests.

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

Example 48 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 49 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)

Example 50 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)

Aggregations

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