Search in sources :

Example 91 with InstrumentationTestSuite

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

the class ConnectivityManagerStressTestRunner method getAllTests.

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

Example 92 with InstrumentationTestSuite

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

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

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

the class MediaFrameworkPerfTestRunner method getAllTests.

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

Example 94 with InstrumentationTestSuite

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

the class MediaFrameworkUnitTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    addMediaMetadataRetrieverStateUnitTests(suite);
    addMediaRecorderStateUnitTests(suite);
    addMediaPlayerStateUnitTests(suite);
    addMediaScannerUnitTests(suite);
    addCameraUnitTests(suite);
    addImageReaderTests(suite);
    addExifInterfaceTests(suite);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 95 with InstrumentationTestSuite

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

the class MediaRecorderStressTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(MediaRecorderStressTest.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