use of android.test.InstrumentationTestSuite in project android_frameworks_base by DirtyUnicorns.
the class MediaFrameworkIntegrationTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(CameraBinderTest.class);
suite.addTestSuite(CameraDeviceBinderTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by DirtyUnicorns.
the class MediaFrameworkPerfTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(MediaPlayerPerformance.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by DirtyUnicorns.
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 android_frameworks_base by AOSPA.
the class BluetoothTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(BluetoothStressTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.
the class DownloadManagerTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(DownloadManagerTestApp.class);
return suite;
}
Aggregations