Search in sources :

Example 61 with InstrumentationTestSuite

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

the class DownloadManagerTestRunner method getAllTests.

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

Example 62 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project platform_frameworks_base by android.

the class Camera2InstrumentationTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    // Note the following test cases are compatible with Camera API2
    suite.addTestSuite(Camera2StillCaptureTest.class);
    suite.addTestSuite(Camera2RecordingTest.class);
    suite.addTestSuite(Camera2ReprocessCaptureTest.class);
    suite.addTestSuite(Camera2CaptureRequestTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 63 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project platform_frameworks_base by android.

the class MediaFrameworkPowerTestRunner method getAllTests.

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

Example 64 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project platform_frameworks_base by android.

the class MediaPlayerStressTestRunner method getAllTests.

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

Example 65 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project platform_frameworks_base by android.

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