Search in sources :

Example 36 with InstrumentationTestSuite

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

Example 37 with InstrumentationTestSuite

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

Example 38 with InstrumentationTestSuite

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

Example 39 with InstrumentationTestSuite

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

the class ConnectivityManagerStressTestRunner method getAllTests.

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

Example 40 with InstrumentationTestSuite

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

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