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;
}
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;
}
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;
}
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;
}
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;
}
Aggregations