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