Search in sources :

Example 31 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 32 with InstrumentationTestSuite

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

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

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

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

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

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

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

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)

Aggregations

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