Search in sources :

Example 76 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

the class MediaFrameworkPerfTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(MediaPlayerPerformance.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 77 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

the class MediaFrameworkPowerTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(MediaPlayerPowerTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 78 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

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;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 79 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

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;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Example 80 with InstrumentationTestSuite

use of android.test.InstrumentationTestSuite in project android_frameworks_base by AOSPA.

the class WifiAssociationTestRunner method getAllTests.

@Override
public TestSuite getAllTests() {
    TestSuite suite = new InstrumentationTestSuite(this);
    suite.addTestSuite(WifiAssociationTest.class);
    return suite;
}
Also used : TestSuite(junit.framework.TestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite) InstrumentationTestSuite(android.test.InstrumentationTestSuite)

Aggregations

InstrumentationTestSuite (android.test.InstrumentationTestSuite)97 TestSuite (junit.framework.TestSuite)97