Search in sources :

Example 1 with InstrumentationTestSuite

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

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 2 with InstrumentationTestSuite

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

the class WifiAssociationTestRunner method getAllTests.

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

Example 3 with InstrumentationTestSuite

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

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 4 with InstrumentationTestSuite

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

the class CameraStressTestRunner method getAllTests.

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

Example 5 with InstrumentationTestSuite

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

the class MediaFrameworkPerfTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(MediaPlayerPerformance.class);
    /* Video Editor performance Test cases */
    suite.addTestSuite(VideoEditorPerformance.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