use of junit.framework.TestSuite 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;
}
use of junit.framework.TestSuite in project android_frameworks_base by DirtyUnicorns.
the class MediaFrameworkUnitTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
addMediaMetadataRetrieverStateUnitTests(suite);
addMediaRecorderStateUnitTests(suite);
addMediaPlayerStateUnitTests(suite);
addMediaScannerUnitTests(suite);
addCameraUnitTests(suite);
addImageReaderTests(suite);
addExifInterfaceTests(suite);
return suite;
}
use of junit.framework.TestSuite in project android_frameworks_base by DirtyUnicorns.
the class MediaPlayerStressTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(MediaPlayerStressTest.class);
return suite;
}
use of junit.framework.TestSuite in project android_frameworks_base by DirtyUnicorns.
the class MediaRecorderStressTestRunner method getAllTests.
@Override
public TestSuite getAllTests() {
TestSuite suite = new InstrumentationTestSuite(this);
suite.addTestSuite(MediaRecorderStressTest.class);
return suite;
}
use of junit.framework.TestSuite in project android_frameworks_base by DirtyUnicorns.
the class ContentTests method suite.
public static TestSuite suite() {
TestSuite suite = new TestSuite(ContentTests.class.getName());
suite.addTestSuite(AssetTest.class);
return suite;
}
Aggregations