use of android.test.InstrumentationTestSuite in project android_frameworks_base by ResurrectionRemix.
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 ResurrectionRemix.
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 ResurrectionRemix.
the class ConnectivityManagerStressTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(WifiApStress.class);
suite.addTestSuite(WifiStressTest.class);
return suite;
}
use of android.test.InstrumentationTestSuite in project android_frameworks_base by ResurrectionRemix.
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 android_frameworks_base by ResurrectionRemix.
the class PowerTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(PowerMeasurement.class);
return suite;
}
Aggregations